From 0226bb663fcb9c6364ebf00a28549dee7a0a9cc5 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 19 Aug 2016 11:32:11 +0200 Subject: [PATCH] Fix start all node is broken Fix #633 --- gns3server/utils/asyncio/pool.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gns3server/utils/asyncio/pool.py b/gns3server/utils/asyncio/pool.py index 6802d9a6..e50bfeab 100644 --- a/gns3server/utils/asyncio/pool.py +++ b/gns3server/utils/asyncio/pool.py @@ -15,7 +15,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -import copy import asyncio @@ -29,7 +28,7 @@ class Pool(): self._concurrency = concurrency def append(self, task, *args, **kwargs): - self._tasks.append((copy.copy(task), args, kwargs)) + self._tasks.append((task, args, kwargs)) @asyncio.coroutine def join(self):