This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 50b4c42a184 [fix](test) check cloud mode in enableStorageVault (#56709)
50b4c42a184 is described below
commit 50b4c42a18425d8a26357020e84a6e816ffcc0bf
Author: Yongqiang YANG <[email protected]>
AuthorDate: Thu Oct 9 10:44:22 2025 +0800
[fix](test) check cloud mode in enableStorageVault (#56709)
---
.../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
index 9c3d5506e97..8f448d6f382 100644
---
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
+++
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
@@ -1977,6 +1977,10 @@ class Suite implements GroovyInterceptable {
}
boolean enableStoragevault() {
+ if (!isCloudMode()) {
+ return false;
+ }
+
if (Strings.isNullOrEmpty(context.config.metaServiceHttpAddress)
|| Strings.isNullOrEmpty(context.config.instanceId)
|| Strings.isNullOrEmpty(context.config.metaServiceToken)) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]