From b5846995fa9b2d0c78f01b564242d77056946a8f Mon Sep 17 00:00:00 2001 From: zfr95 Date: Mon, 16 Mar 2026 17:41:49 +0800 Subject: [PATCH] [test](auth)Resolve the conflict in the backup auth case (#61384) [test](auth)Resolve the conflict in the backup auth case During backup, failing to acquire the lock within 10 seconds makes the test case unstable, adding nonConcurrent can fix it. --- regression-test/suites/auth_call/test_ddl_backup_auth.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-test/suites/auth_call/test_ddl_backup_auth.groovy b/regression-test/suites/auth_call/test_ddl_backup_auth.groovy index 1a2f7b79718310..ea34f55ed30f38 100644 --- a/regression-test/suites/auth_call/test_ddl_backup_auth.groovy +++ b/regression-test/suites/auth_call/test_ddl_backup_auth.groovy @@ -18,7 +18,7 @@ import org.junit.Assert; import java.util.UUID -suite("test_ddl_backup_auth","p0,auth_call") { +suite("test_ddl_backup_auth","p0,auth_call,nonConcurrent") { UUID uuid = UUID.randomUUID() String randomValue = uuid.toString() int hashCode = randomValue.hashCode()