Commit 7f286449 authored by Denis Bilenko's avatar Denis Bilenko

test_queue.py: reduce sleep time

parent 464b0474
...@@ -28,7 +28,7 @@ class _TriggerThread(threading.Thread): ...@@ -28,7 +28,7 @@ class _TriggerThread(threading.Thread):
# sleep here (I aimed at 10 seconds for blocking functions -- # sleep here (I aimed at 10 seconds for blocking functions --
# they should never actually wait that long - they should make # they should never actually wait that long - they should make
# progress as soon as we call self.fn()). # progress as soon as we call self.fn()).
time.sleep(0.1) time.sleep(0.01)
self.startedEvent.set() self.startedEvent.set()
self.fn(*self.args) self.fn(*self.args)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment