Skip to content

Commit

Permalink
Changes polling frequency (GoogleCloudPlatform#920)
Browse files Browse the repository at this point in the history
  • Loading branch information
gguuss authored and Jon Wayne Parrott committed May 1, 2017
1 parent 176955d commit ea69f0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions video/cloud-client/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')

Expand Down Expand Up @@ -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.')

Expand Down Expand Up @@ -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.')

Expand Down

0 comments on commit ea69f0f

Please sign in to comment.