Fix timeout issue when creating Qemu disk image. Fixes https://github.com/GNS3/gns3-server/issues/2313

This commit is contained in:
grossmj
2023-11-05 15:41:46 +10:00
parent 2bbb560b8e
commit fe246cd413
2 changed files with 5 additions and 0 deletions

View File

@ -330,6 +330,8 @@ class WebServer:
try:
self._loop.run_forever()
except ConnectionResetError:
log.warning("Connection reset by peer")
except TypeError as e:
# This is to ignore an asyncio.windows_events exception
# on Windows when the process gets the SIGBREAK signal