Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
proton-c-0.37.0
-
None
Description
Dispatch test failing with
https://app.travis-ci.com/github/apache/qpid-dispatch/jobs/548002463#L3438
30: ====================================================================== 30: FAIL: test_ssl_connection (system_tests_qdmanage.QdmanageTest) 30: Verify qdmanage can securely connect via SSL 30: ---------------------------------------------------------------------- 30: Traceback (most recent call last): 30: File "/Users/travis/build/apache/qpid-dispatch/tests/system_tests_qdmanage.py", line 636, in test_ssl_connection 30: "unexpected exception: %s" % str(exc.exception)) 30: AssertionError: 'certificate verify failed' not found in "ConnectionException: Connection amqps://localhost:22259 disconnected: Condition('amqp:connection:framing-error', 'SSL Failure: error:16000069:STORE routines::unregistered scheme')\n" : unexpected exception: ConnectionException: Connection amqps://localhost:22259 disconnected: Condition('amqp:connection:framing-error', 'SSL Failure: error:16000069:STORE routines::unregistered scheme') 30: 30: 30: ---------------------------------------------------------------------- 30: Ran 35 tests in 357.082s 30: 30: FAILED (failures=1) 30/72 Test #30: system_tests_qdmanage .............................***Failed 357.27 sec
Although this is failure from a Dispatch test, it looks to be caused solely by Proton. In cmake configure step of proton
-- Found OpenSSL: /opt/local/libexec/openssl3/lib/libcrypto.dylib (found version "3.0.0")
It appears that the error above is something linked to OpenSSL 3 https://github.com/danbev/learning-libcrypto#error16000069store-routinesunregistered-scheme
The bug described at the link (https://github.com/openssl/openssl/pull/12901) is fixed in OpenSSL 3.0.0, so the problem in Proton is probably something slightly different.