From 5bfa864f0c9ae2f3392a21980458a26280fe68e6 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Thu, 23 Feb 2017 16:19:20 +0100 Subject: [PATCH] Increase timeout for detecting VirtualBox GNS3 VM --- gns3server/controller/gns3vm/virtualbox_gns3_vm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/gns3vm/virtualbox_gns3_vm.py b/gns3server/controller/gns3vm/virtualbox_gns3_vm.py index c6788034..07dcb72d 100644 --- a/gns3server/controller/gns3vm/virtualbox_gns3_vm.py +++ b/gns3server/controller/gns3vm/virtualbox_gns3_vm.py @@ -221,7 +221,7 @@ class VirtualBoxGNS3VM(BaseGNS3VM): second to a GNS3 endpoint in order to get the list of the interfaces and their IP and after that match it with VirtualBox host only. """ - remaining_try = 240 + remaining_try = 300 while remaining_try > 0: json_data = None session = aiohttp.ClientSession()