1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Fix TypeError: http_query() got an unexpected keyword argument 'timeout'

Fix #947
This commit is contained in:
Julien Duponchelle 2017-03-20 17:06:00 +01:00
parent bc0e4c1174
commit a62b791c68
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8
2 changed files with 9 additions and 4 deletions

View File

@ -93,7 +93,7 @@ class Docker(BaseManager):
return body
@asyncio.coroutine
def http_query(self, method, path, data={}, params={}):
def http_query(self, method, path, data={}, params={}, timeout=300):
"""
Make a query to the docker daemon
@ -101,6 +101,7 @@ class Docker(BaseManager):
:param path: Endpoint in API
:param data: Dictionnary with the body. Will be transformed to a JSON
:param params: Parameters added as a query arg
:param timeout: Timeout
:returns: HTTP response
"""
data = json.dumps(data)
@ -113,6 +114,7 @@ class Docker(BaseManager):
params=params,
data=data,
headers={"content-type": "application/json", },
timeout=timeout
)
except (aiohttp.ClientResponseError, aiohttp.ClientOSError) as e:
raise DockerError("Docker has returned an error: {}".format(str(e)))

View File

@ -51,7 +51,8 @@ def test_query_success(loop, vm):
connector=vm._connector,
data='{"a": true}',
headers={'content-type': 'application/json'},
params={'b': 1})
params={'b': 1},
timeout=300)
assert data == {"c": False}
@ -74,7 +75,8 @@ def test_query_error(loop, vm):
connector=vm._connector,
data='{"a": true}',
headers={'content-type': 'application/json'},
params={'b': 1})
params={'b': 1},
timeout=300)
def test_query_error_json(loop, vm):
@ -95,7 +97,8 @@ def test_query_error_json(loop, vm):
connector=vm._connector,
data='{"a": true}',
headers={'content-type': 'application/json'},
params={'b': 1})
params={'b': 1},
timeout=300)
def test_list_images(loop):