Merge pull request #47877 from dwoz/sleep_audit

Revert job chunk wait time change
This commit is contained in:
Daniel Wallace 2018-06-01 09:11:45 -05:00 committed by GitHub
commit d2f3377b5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2065,7 +2065,7 @@ class State(object):
while True:
if self.reconcile_procs(running):
break
time.sleep(0.0001)
time.sleep(0.01)
ret = dict(list(disabled.items()) + list(running.items()))
return ret
@ -2197,7 +2197,7 @@ class State(object):
while True:
if self.reconcile_procs(run_dict):
break
time.sleep(0.0001)
time.sleep(0.01)
for chunk in chunks:
tag = _gen_tag(chunk)