From 5821ca25007c37daa92a465e5a857afa76177f0c Mon Sep 17 00:00:00 2001 From: Charles Engelke Date: Mon, 26 Nov 2018 13:08:29 -0800 Subject: [PATCH] Longer timeouts to address intermittent failures [(#1871)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/1871) --- samples/shotchange/shotchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/shotchange/shotchange.py b/samples/shotchange/shotchange.py index e9b91dfd..2db0e832 100644 --- a/samples/shotchange/shotchange.py +++ b/samples/shotchange/shotchange.py @@ -44,7 +44,7 @@ def analyze_shots(path): print('\nProcessing video for shot change annotations:') # [START video_shot_tutorial_check_operation] - result = operation.result(timeout=90) + result = operation.result(timeout=120) print('\nFinished processing.') # [END video_shot_tutorial_check_operation]