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
Noted in #1537 (comment), the retrieve jobs notebook is failing when the most recent job is cancelled. We should probably filter by job state, something like:
# Get ID of most recent successful job for demonstration.# This will not work if you've never successfully run a job.successful_jobs=service.jobs().filter(lambdaj: j.status() =="DONE")
job_id=successful_jobs[0].job_id()
print(job_id)
The text was updated successfully, but these errors were encountered:
Noted in #1537 (comment), the retrieve jobs notebook is failing when the most recent job is cancelled. We should probably filter by job state, something like:
The text was updated successfully, but these errors were encountered: