You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #361 apparently tries to implement exponential backoff while waiting for the query result. However, the implementation appears to be incorrect: the counter variable is always negative, sleep() is never called and the code is effectively a busy loop.
The text was updated successfully, but these errors were encountered:
PR #361 apparently tries to implement exponential backoff while waiting for the query result. However, the implementation appears to be incorrect: the
counter
variable is always negative,sleep()
is never called and the code is effectively a busy loop.The text was updated successfully, but these errors were encountered: