Only discard ssl.SSLEOFError in Server.run()
This commit is contained in:
parent
21a6f3e3f2
commit
58b2b5c1da
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class Server():
|
||||||
|
|
||||||
thread = threading.Thread(target=spawn)
|
thread = threading.Thread(target=spawn)
|
||||||
thread.start()
|
thread.start()
|
||||||
except:
|
except ssl.SSLEOFError as e:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
listener.close()
|
listener.close()
|
||||||
|
|
Loading…
Add table
Reference in a new issue