Skip to content

Commit ea69f0f

Browse files
gguussJon Wayne Parrott
authored andcommitted
Changes polling frequency (#920)
1 parent 176955d commit ea69f0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

video/cloud-client/analyze.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def analyze_faces(path):
4141
while not operation.done():
4242
sys.stdout.write('.')
4343
sys.stdout.flush()
44-
time.sleep(1)
44+
time.sleep(20)
4545

4646
print('\nFinished processing.')
4747

@@ -70,7 +70,7 @@ def analyze_labels(path):
7070
while not operation.done():
7171
sys.stdout.write('.')
7272
sys.stdout.flush()
73-
time.sleep(1)
73+
time.sleep(20)
7474

7575
print('\nFinished processing.')
7676

@@ -99,7 +99,7 @@ def analyze_shots(path):
9999
while not operation.done():
100100
sys.stdout.write('.')
101101
sys.stdout.flush()
102-
time.sleep(1)
102+
time.sleep(20)
103103

104104
print('\nFinished processing.')
105105

0 commit comments

Comments
 (0)