Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

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 committed May 20, 2021
1 parent c144dbe commit 4f7d32a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/analyze/beta_snippets.py
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 4f7d32a

Please sign in to comment.