8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d462e40 commit 93e66f6Copy full SHA for 93e66f6
Lib/test/test_asyncio/test_sslproto.py
@@ -429,6 +429,10 @@ def test_start_tls_server_1(self):
429
430
server_context = test_utils.simple_server_sslcontext()
431
client_context = test_utils.simple_client_sslcontext()
432
+ # bpo-35031: Some FreeBSD buildbots fail to run this test
433
+ # as the eof was not being received by the server if the payload
434
+ # size is not big enough. This behaviour only appears if the
435
+ # client is using TLS1.3.
436
client_context.options |= ssl.OP_NO_TLSv1_3
437
438
def client(sock, addr):
0 commit comments