AssertionError
Traceback (most recent call last):
File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/dns/regression.py", line 65, in
regression()
File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/dns/regression.py", line 60, in regression
Scenario(run=load("dns.tests.lookup.scenario", "scenario"))
File "/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/dns/../dns/tests/lookup/scenario.py", line 69, in scenario
assert client_version == server_version, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert client_version == server_version, error()
Assertion values
assert client_version == server_version, error()
^ is 'Code: 516. DB::Exception: test_dns: Authentication failed: password is incorrect, or there is no user with such name. (AUTHENTICATION_FAILED) (version 23.3.8.23.altinityfips (altinity build))'
assert client_version == server_version, error()
^ is '23.3.8.23.altinityfips'
assert client_version == server_version, error()
^ is = False
@@ -1 +1 @@
-Code: 516. DB::Exception: test_dns: Authentication failed: password is incorrect, or there is no user with such name. (AUTHENTICATION_FAILED) (version 23.3.8.23.altinityfips (altinity build))
+23.3.8.23.altinityfips
assert client_version == server_version, error()
^ is False
Where
File '/home/ubuntu/actions-runner/_work/ClickHouse/ClickHouse/dns/../dns/tests/lookup/scenario.py', line 69 in 'scenario'
61\| client_version = (
62\| cluster.node("clickhouse2")
63\| .command(
64\| "curl 'http://clickhouse1:8123/?user=test_dns&query=SELECT+version()'"
65\| )
66\| .output
67\| )
68\| server_version = cluster.node("clickhouse1").query(f"SELECT version()").output
69\|> assert client_version == server_version, error()
70\|
71\| with When("I kill the background port listening"):
72\| cluster.node("clickhouse1").command("killall tcpdump")