Skip to content

Commit e4ac244

Browse files
andrewferlitschleahecole
authored andcommitted
chore: fix flaky sample track_objects (#211)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-videointelligence/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
1 parent 4877bdd commit e4ac244

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

videointelligence/samples/analyze/analyze.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def track_objects_gcs(gcs_uri):
425425
)
426426
print("\nProcessing video for object annotations.")
427427

428-
result = operation.result(timeout=300)
428+
result = operation.result(timeout=500)
429429
print("\nFinished processing.\n")
430430

431431
# The first result is retrieved because a single video was processed.
@@ -480,7 +480,7 @@ def track_objects(path):
480480
)
481481
print("\nProcessing video for object annotations.")
482482

483-
result = operation.result(timeout=300)
483+
result = operation.result(timeout=500)
484484
print("\nFinished processing.\n")
485485

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

0 commit comments

Comments
 (0)