mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
parent
f151181409
commit
d1de665939
@ -101,14 +101,17 @@ class Docker(BaseManager):
|
||||
"""
|
||||
data = json.dumps(data)
|
||||
url = "http://docker/" + path
|
||||
response = yield from aiohttp.request(
|
||||
method,
|
||||
url,
|
||||
connector=(yield from self.connector()),
|
||||
params=params,
|
||||
data=data,
|
||||
headers={"content-type": "application/json", },
|
||||
)
|
||||
try:
|
||||
response = yield from aiohttp.request(
|
||||
method,
|
||||
url,
|
||||
connector=(yield from self.connector()),
|
||||
params=params,
|
||||
data=data,
|
||||
headers={"content-type": "application/json", },
|
||||
)
|
||||
except aiohttp.ClientResponseError as e:
|
||||
raise DockerError("Docker has returned an error: {}".format(str(e)))
|
||||
if response.status >= 300:
|
||||
body = yield from response.read()
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user