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 bb1d437 commit ff2877c
Showing 1 changed file with 2 additions and 2 deletions.
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 ff2877c

Please sign in to comment.