This is an automated email from the ASF dual-hosted git repository. zhangchen 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 9d7287504e2 [Fix](regression) Fix flaky test `fault_injection_p0/cloud/test_cloud_mow_stale_resp_load_load_conflict` (#43448) 9d7287504e2 is described below commit 9d7287504e24333a4e4a674ac7bad6cc4d1ebdb5 Author: bobhan1 <bh2444151...@outlook.com> AuthorDate: Wed Nov 13 11:43:17 2024 +0800 [Fix](regression) Fix flaky test `fault_injection_p0/cloud/test_cloud_mow_stale_resp_load_load_conflict` (#43448) Problem Summary: `ADMIN SET FRONTEND CONFIG()` will only update the config of the connected FE, which may lead to unexpected result for some cases if the connected FE is not master FE. should use `ADMIN SET FRONTEND CONFIG()` instead. --- .../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0d9ae067fec..af71228c5b1 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 @@ -1660,7 +1660,7 @@ class Suite implements GroovyInterceptable { } void setFeConfig(String key, Object value) { - sql "ADMIN SET FRONTEND CONFIG ('${key}' = '${value}')" + sql "ADMIN SET ALL FRONTEND CONFIG ('${key}' = '${value}')" } void setFeConfigTemporary(Map<String, Object> tempConfig, Closure actionSupplier) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org