Set HTTPServer class variable allow_reuse_address to 1, so restarting
the server after it died doesn't require a wait period.
This commit is contained in:
parent
e3c7a5fbf5
commit
18865de7bd
@ -87,6 +87,8 @@ DEFAULT_ERROR_MESSAGE = """\
|
||||
|
||||
class HTTPServer(SocketServer.TCPServer):
|
||||
|
||||
allow_reuse_address = 1 # Seems to make sense in testing environment
|
||||
|
||||
def server_bind(self):
|
||||
"""Override server_bind to store the server name."""
|
||||
SocketServer.TCPServer.server_bind(self)
|
||||
|
Loading…
x
Reference in New Issue
Block a user