mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
Print warning when server.timeout is used with Python < 3.5.2
This commit is contained in:
parent
2df009fac8
commit
d96faa35dd
1 changed files with 4 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue