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
code here: #24 (comment)
to replace sleep calls in tests.
def wait_for_job(job):
# from https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/bigquery/cloud-client/snippets.py
while True:
job.reload() # Refreshes the state via a GET request.
if job.state == 'DONE':
if job.error_result:
raise RuntimeError(job.errors)
return
logger.info("Waiting for {} to complete".format(job))
time.sleep(1)
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
code here: #24 (comment)
to replace sleep calls in tests.
The text was updated successfully, but these errors were encountered: