Skip to content

Commit

Permalink
Updated test to be compatitable with BoringSSL error mesage
Browse files Browse the repository at this point in the history
  • Loading branch information
Enmk authored Oct 13, 2024
1 parent 99505be commit 81249e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/integration/test_keeper_internal_secure/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,11 @@ def check_invalid_configuration(filename, password):
setupSsl(node, filename, password)

nodes[0].start_clickhouse(expected_to_fail=True)
# NOTE(vnemkov): in 24.3 we still use BoringSSL, which produces a bit different error string.
# for OpenSSL-based versions (starting from 24.3), revert that back to what it used to be:
# "OpenSSLException: EVPKey::loadKey.*error:0480006C:PEM routines::no start line"
nodes[0].wait_for_log_line(
"OpenSSLException: EVPKey::loadKey.*error:0480006C:PEM routines::no start line",
"OpenSSLException: EVPKey::loadKey.*PEM routines:OPENSSL_internal:NO_START_LINE",
)


Expand Down

0 comments on commit 81249e1

Please sign in to comment.