apache / trafficserver

Apache Traffic Serverâ„¢ is a fast, scalable and extensible HTTP/1.1 and HTTP/2 compliant caching proxy server.
https://trafficserver.apache.org/
Apache License 2.0
1.74k stars 782 forks source link

Autest tls_tunnel fails because of a slightly different error message from python #11409

Closed maskit closed 4 weeks ago

maskit commented 1 month ago

test proxy_protocol_port - not in connect_ports fails, because it can't find "ssl.SSLEOFError" in the output.

The expected error message is probably like this

ssl.SSLEOFError: [SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1006)

but the error message can be like this (it probably depends on the version of python or its library)

ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1129)
bryancall commented 4 weeks ago

@maskit Ask for @bneradt's help

ywkaras commented 4 weeks ago

Is this related to https://github.com/apache/trafficserver/issues/9550 ?

maskit commented 4 weeks ago

Yes, looks like the same as the issue you reported. The one Masaori mentioned seems like a different issue.