Skip to content

Commit

Permalink
chore: increased timeout by 200s to reduce flakiness (#152)
Browse files Browse the repository at this point in the history

Fixes #149 #150 🦕
  • Loading branch information
munkhuushmgl authored May 20, 2021
1 parent 4523b27 commit 80e3d0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions videointelligence/samples/analyze/beta_snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def track_objects_gcs(gcs_uri):
)
print("\nProcessing video for object annotations.")

result = operation.result(timeout=300)
result = operation.result(timeout=500)
print("\nFinished processing.\n")

# The first result is retrieved because a single video was processed.
Expand Down Expand Up @@ -291,7 +291,7 @@ def track_objects(path):
)
print("\nProcessing video for object annotations.")

result = operation.result(timeout=300)
result = operation.result(timeout=500)
print("\nFinished processing.\n")

# The first result is retrieved because a single video was processed.
Expand Down

0 comments on commit 80e3d0a

Please sign in to comment.