From 901cf9ef038f5d9a94418d1fa822d1553f582252 Mon Sep 17 00:00:00 2001 From: Gus Class Date: Fri, 28 Apr 2017 15:50:01 -0700 Subject: [PATCH] Changes polling frequency --- video/cloud-client/analyze.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/video/cloud-client/analyze.py b/video/cloud-client/analyze.py index 419e3388f05..f682ea17a93 100644 --- a/video/cloud-client/analyze.py +++ b/video/cloud-client/analyze.py @@ -41,7 +41,7 @@ def analyze_faces(path): while not operation.done(): sys.stdout.write('.') sys.stdout.flush() - time.sleep(1) + time.sleep(20) print('\nFinished processing.') @@ -70,7 +70,7 @@ def analyze_labels(path): while not operation.done(): sys.stdout.write('.') sys.stdout.flush() - time.sleep(1) + time.sleep(20) print('\nFinished processing.') @@ -99,7 +99,7 @@ def analyze_shots(path): while not operation.done(): sys.stdout.write('.') sys.stdout.flush() - time.sleep(1) + time.sleep(20) print('\nFinished processing.')