You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One test is failing when running the test suite in openSUSE Tumbleweed with openssl 3.2:
FAIL: test_error_logging (tornado.test.simple_httpclient_test.SimpleHTTPSClientTestCase.test_error_logging)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/abuild/rpmbuild/BUILD/tornado-6.4/tornado/testing.py", line 102, in __call__
result = self.orig_method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/abuild/rpmbuild/BUILD/tornado-6.4/tornado/test/simple_httpclient_test.py", line 573, in test_error_logging
self.assertFalse(expect_log.logged_stack)
AssertionError: True is not false
Looks like the new openssl returns a different error code in this case when the certification is not valid and instead of returning ssl.SSL_ERROR_SSL it's returning ssl.SSL_ERROR_SYSCALL, in the iostream.py
The text was updated successfully, but these errors were encountered:
One test is failing when running the test suite in openSUSE Tumbleweed with openssl 3.2:
Looks like the new openssl returns a different error code in this case when the certification is not valid and instead of returning
ssl.SSL_ERROR_SSL
it's returningssl.SSL_ERROR_SYSCALL
, in the iostream.pyThe text was updated successfully, but these errors were encountered: