Changeset: a4bfd50dd73e for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/a4bfd50dd73e
Modified Files:
clients/mapilib/Tests/tlstester.py
Branch: monetdburl
Log Message:
Let tlstester catch OSError during TLS handshake
diffs (13 lines):
diff --git a/clients/mapilib/Tests/tlstester.py
b/clients/mapilib/Tests/tlstester.py
--- a/clients/mapilib/Tests/tlstester.py
+++ b/clients/mapilib/Tests/tlstester.py
@@ -512,6 +512,9 @@ class MapiHandler(socketserver.BaseReque
except SSLError as e:
log.info(f"port '{self.name}': TLS handshake failed: {e}")
return
+ except OSError as e:
+ log.info(f"port '{self.name}': error during TLS handshake:
{e}")
+ return
if self.check_alpn:
alpn = self.conn.selected_alpn_protocol()
if alpn is None:
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]