Do not block when processing held back events!
This commit is contained in:
parent
12b8a54081
commit
2ed36ed383
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ class EventManager(object):
|
|||
"were held back before startup event".format(self._held_back.qsize()))
|
||||
while True:
|
||||
try:
|
||||
self._queue.put(self._held_back.get())
|
||||
self._queue.put(self._held_back.get(block=False))
|
||||
except queue.Empty:
|
||||
break
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue