mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Merge pull request #45099 from ClickHouse/qoega-patch-4
Try to fix flaky test_create_user_and_login/test.py::test_login_as_dropped_user_xml
This commit is contained in:
commit
bca117b26d
@ -80,7 +80,11 @@ EOF""",
|
|||||||
["bash", "-c", "rm /etc/clickhouse-server/users.d/user_c.xml"]
|
["bash", "-c", "rm /etc/clickhouse-server/users.d/user_c.xml"]
|
||||||
)
|
)
|
||||||
|
|
||||||
expected_errors = ["no user with such name", "not found in user directories"]
|
expected_errors = [
|
||||||
|
"no user with such name",
|
||||||
|
"not found in user directories",
|
||||||
|
"User has been dropped",
|
||||||
|
]
|
||||||
while True:
|
while True:
|
||||||
out, err = instance.query_and_get_answer_with_error("SELECT 1", user="C")
|
out, err = instance.query_and_get_answer_with_error("SELECT 1", user="C")
|
||||||
found_error = [
|
found_error = [
|
||||||
|
Loading…
Reference in New Issue
Block a user