mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-22 08:50:09 +00:00
Do not automatically connect to local compute.
This commit is contained in:
@ -501,7 +501,8 @@ class Compute:
|
||||
async def _run_http_query(self, method, path, data=None, timeout=20, raw=False):
|
||||
with async_timeout.timeout(timeout):
|
||||
url = self._getUrl(path)
|
||||
headers = {'content-type': 'application/json'}
|
||||
headers = {}
|
||||
headers['content-type'] = 'application/json'
|
||||
chunked = None
|
||||
if data == {}:
|
||||
data = None
|
||||
|
Reference in New Issue
Block a user