mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
add client IP in case of SSL error
This commit is contained in:
parent
b729a4c192
commit
63b98913e0
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ class ParallelHTTPSServer(ParallelHTTPServer):
|
|||
except socket.timeout:
|
||||
raise
|
||||
except Exception as e:
|
||||
raise RuntimeError("SSL handshake failed: %s" % e) from e
|
||||
raise RuntimeError("SSL handshake failed: %s client %s" % (e, client_address[0])) from e
|
||||
except Exception:
|
||||
try:
|
||||
self.handle_error(request, client_address)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue