From 0090ff3722bfcc947f50b7935206921c9b5b7779 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 22 Dec 2024 22:29:56 +0700 Subject: [PATCH] Increase timeout to run compute HTTP queries. Fixes #2461 --- gns3server/controller/compute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/compute.py b/gns3server/controller/compute.py index 4a5cbd1c..85247e94 100644 --- a/gns3server/controller/compute.py +++ b/gns3server/controller/compute.py @@ -488,7 +488,7 @@ class Compute: """ Returns URL for specific path at Compute""" return self._getUrl(path) - async def _run_http_query(self, method, path, data=None, timeout=20, raw=False): + async def _run_http_query(self, method, path, data=None, timeout=120, raw=False): async with asynctimeout(delay=timeout): url = self._getUrl(path) headers = {}