This is an automated email from the ASF dual-hosted git repository.
hello-stephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new e7b0e4e22d5 [fix](regression) Run restore auth case non-concurrently
(#65668)
e7b0e4e22d5 is described below
commit e7b0e4e22d538447f3bd31ecf89c5d2cf5b16665
Author: shuke <[email protected]>
AuthorDate: Thu Jul 16 14:12:17 2026 +0800
[fix](regression) Run restore auth case non-concurrently (#65668)
Problem Summary:
The repository authorization regression case can fail for reasons
unrelated to authorization when it runs concurrently with
test_ddl_restore_auth.
In P0 build 996774, test_ddl_restore_auth submitted BACKUP SNAPSHOT at
19:40:11.661. The repository authorization case submitted its authorized
DROP REPOSITORY only 26 ms later. The drop exhausted BackupHandler's
10-second global submission-lock wait at 19:40:21.691, while the backup
submission did not return until 19:40:28.960.
This change runs test_ddl_restore_auth in the nonConcurrent group,
consistent with test_ddl_backup_auth. The authorization assertions and
backup/restore behavior are unchanged.
---
regression-test/suites/auth_call/test_ddl_restore_auth.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/regression-test/suites/auth_call/test_ddl_restore_auth.groovy
b/regression-test/suites/auth_call/test_ddl_restore_auth.groovy
index 5079b7ce416..288099b9b4f 100644
--- a/regression-test/suites/auth_call/test_ddl_restore_auth.groovy
+++ b/regression-test/suites/auth_call/test_ddl_restore_auth.groovy
@@ -17,7 +17,7 @@
import java.util.UUID
-suite("test_ddl_restore_auth", "p0,auth_call") {
+suite("test_ddl_restore_auth", "p0,auth_call,nonConcurrent") {
String label = UUID.randomUUID().toString().replaceAll("-",
"").substring(0, 8)
def syncer = getSyncer()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]