Skip to content

Commit cf9db9c

Browse files
committed
fix ldap on head
1 parent 2fec34c commit cf9db9c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ldap/external_user_directory/tests/authentications.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1589,10 +1589,12 @@ def user_lookup_priority(self, server):
15891589
):
15901590
with rbac_users({"cn": "local", "userpassword": "local"}):
15911591
exitcode = 4
1592-
if check_clickhouse_version(">=25.1")(
1593-
self
1594-
): # https://github.com/ClickHouse/ClickHouse/pull/72198
1592+
if check_clickhouse_version(">=25.1")(self) and check_clickhouse_version(
1593+
"<=25.3"
1594+
)(self):
15951595
exitcode = 194
1596+
# https://github.com/ClickHouse/ClickHouse/pull/72198
1597+
# https://github.com/ClickHouse/ClickHouse/pull/76637
15961598
with When(
15971599
"I try to login as 'default' user which is also defined in users.xml it should fail"
15981600
):

0 commit comments

Comments
 (0)