Print warning when server.timeout is used with Python < 3.5.2
This commit is contained in:
parent
2df009fac8
commit
d96faa35dd
@ -124,6 +124,10 @@ class HTTPServer(wsgiref.simple_server.WSGIServer):
|
||||
self.server_close()
|
||||
raise
|
||||
|
||||
if self.client_timeout and sys.version_info < (3, 5, 2):
|
||||
self.logger.warning("Using server.timeout with Python < 3.5.2 "
|
||||
"can cause network connection failures")
|
||||
|
||||
def get_request(self):
|
||||
# Set timeout for client
|
||||
_socket, address = super().get_request()
|
||||
|
Loading…
Reference in New Issue
Block a user