mirror of
https://github.com/clearml/clearml
synced 2025-04-03 04:21:03 +00:00
Fix python 2.7 debugger threading issues
This commit is contained in:
parent
39ba074b70
commit
2c1e314fbf
@ -1,5 +1,7 @@
|
|||||||
from threading import Lock
|
|
||||||
import time
|
import time
|
||||||
|
from threading import Lock
|
||||||
|
|
||||||
|
import six
|
||||||
|
|
||||||
|
|
||||||
class AsyncManagerMixin(object):
|
class AsyncManagerMixin(object):
|
||||||
@ -36,7 +38,12 @@ class AsyncManagerMixin(object):
|
|||||||
if r.ready():
|
if r.ready():
|
||||||
continue
|
continue
|
||||||
t = time.time()
|
t = time.time()
|
||||||
r.wait(timeout=remaining)
|
# bugfix for python2.7 threading issues
|
||||||
|
if six.PY2 and not remaining:
|
||||||
|
while not r.ready():
|
||||||
|
r.wait(timeout=2.)
|
||||||
|
else:
|
||||||
|
r.wait(timeout=remaining)
|
||||||
count += 1
|
count += 1
|
||||||
if max_num_uploads is not None and max_num_uploads - count <= 0:
|
if max_num_uploads is not None and max_num_uploads - count <= 0:
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user