1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Fix issue with start all.

This commit is contained in:
grossmj 2018-03-29 13:32:56 +07:00
parent b61bd2dc67
commit 898f180310

View File

@ -906,7 +906,7 @@ class Project:
pool = Pool(concurrency=3)
for node in self.nodes.values():
if node.node_type == "traceng":
self.controller.notification.emit("log.warning", "TraceNG nodes must be started one by one")
#self.controller.notification.emit("log.warning", "TraceNG nodes must be started one by one")
continue
pool.append(node.start)
yield from pool.join()