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

Fix capture stop with Wireshark

Fix https://github.com/GNS3/gns3-gui/issues/1763
This commit is contained in:
Julien Duponchelle 2017-01-16 20:29:45 +01:00
parent 2de284ea30
commit 304d92764c
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -340,7 +340,7 @@ class Compute:
self._response.close()
url = self._getUrl("/projects/{}/stream/{}".format(project.id, path))
response = yield from self._session().request("GET", url, auth=self._auth)
response = yield from self._session().request("GET", url, auth=self._auth, timeout=None)
if response.status == 404:
raise aiohttp.web.HTTPNotFound(text="{} not found on compute".format(path))
return StreamResponse(response)