Try to improve error reporting when streaming a PCAP file. Ref #2235.

This commit is contained in:
grossmj
2017-09-01 17:10:24 +07:00
parent ee486b32bd
commit c22229101f
2 changed files with 12 additions and 1 deletions

View File

@ -290,7 +290,12 @@ class Link:
Dump a pcap file on disk
"""
stream_content = yield from self.read_pcap_from_source()
try:
stream_content = yield from self.read_pcap_from_source()
except aiohttp.web.HTTPException as e:
log.error("Could not stream pcap file: error {}: {}".format(e.status, e.text))
self._capturing = False
self._project.controller.notification.emit("link.updated", self.__json__())
with stream_content as stream:
with open(self.capture_file_path, "wb+") as f:
while self._capturing: