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:
Guido van Rossum 2000-05-09 14:54:13 +00:00
parent e3c7a5fbf5
commit 18865de7bd

View File

@ -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)