From 898f180310472a3199f6ccb25a79a4a8f155e4b1 Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 29 Mar 2018 13:32:56 +0700 Subject: [PATCH] Fix issue with start all. --- gns3server/controller/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/project.py b/gns3server/controller/project.py index c7b1e4ab..a9f41d90 100644 --- a/gns3server/controller/project.py +++ b/gns3server/controller/project.py @@ -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()