From ff2877cc80864ae388647890e1cdadcb0631a886 Mon Sep 17 00:00:00 2001 From: Mike <45373284+munkhuushmgl@users.noreply.github.com> Date: Thu, 20 May 2021 06:54:02 -0700 Subject: [PATCH] chore: increased timeout by 200s to reduce flakiness (#152) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #149 #150 🦕 --- .../samples/analyze/beta_snippets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py b/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py index 766fe49903f1..dab3b1a1d72f 100644 --- a/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py +++ b/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py @@ -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. @@ -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.