1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Assert host and port are not None when creating the Server instance.

This commit is contained in:
Jeremy 2015-03-12 18:50:38 -06:00
parent 36daa3627e
commit 500b7112f5

View File

@ -61,6 +61,8 @@ class Server:
"""
if not hasattr(Server, "_instance") or Server._instance is None:
assert host is not None
assert port is not None
Server._instance = Server(host, port)
return Server._instance
@ -225,6 +227,6 @@ class Server:
self._loop.run_forever()
except TypeError as e:
# This is to ignore an asyncio.windows_events exception
# on Windows when the process get the SIGBREAK signal
# on Windows when the process gets the SIGBREAK signal
# TypeError: async() takes 1 positional argument but 3 were given
log.warning("TypeError exception in the loop {}".format(e))