We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b37db57 commit fa0d7d7Copy full SHA for fa0d7d7
gns3server/compute/notification_manager.py
@@ -54,7 +54,7 @@ def emit(self, action, event, **kwargs):
54
"""
55
56
for listener in self._listeners:
57
- asyncio.get_event_loop().call_soon(listener.put_nowait, (action, event, kwargs))
+ asyncio.get_event_loop().call_soon_threadsafe(listener.put_nowait, (action, event, kwargs))
58
59
@staticmethod
60
def reset():
0 commit comments