fixed exit

This commit is contained in:
Abubakar Abid 2022-01-03 18:00:28 -05:00
parent 68384d0661
commit a6b1959e10

View File

@ -442,8 +442,6 @@ class Interface:
def block_thread(
self,
thread: threading.Thread,
path_to_local_server: str
) -> None:
"""Block main thread until interrupted by user."""
try:
@ -452,8 +450,6 @@ class Interface:
except (KeyboardInterrupt, OSError):
print("Keyboard interruption in main thread... closing server.")
self.server.close()
# Hit the server one more time to close it
networking.url_ok(self.local_url)
if self.enable_queue:
queueing.close()