This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new d781f8c35dc branch-3.0: [fix](docker case) disable
`PluginQueryTimeoutDebugger` in docker case #54984 (#55217)
d781f8c35dc is described below
commit d781f8c35dce7c499bef42e9595c3ef5b4f2703c
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Aug 24 22:21:08 2025 +0800
branch-3.0: [fix](docker case) disable `PluginQueryTimeoutDebugger` in
docker case #54984 (#55217)
Cherry-picked from #54984
Co-authored-by: deardeng <[email protected]>
---
regression-test/plugins/plugin_query_timeout_debugger.groovy | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/regression-test/plugins/plugin_query_timeout_debugger.groovy
b/regression-test/plugins/plugin_query_timeout_debugger.groovy
index 5d863b9a754..743582419ee 100644
--- a/regression-test/plugins/plugin_query_timeout_debugger.groovy
+++ b/regression-test/plugins/plugin_query_timeout_debugger.groovy
@@ -37,6 +37,7 @@ class PluginQueryTimeoutDebuggerHolder {
PluginQueryTimeoutDebugger.jdbcUrl = context.config.jdbcUrl
PluginQueryTimeoutDebugger.jdbcUser = context.config.jdbcUser
PluginQueryTimeoutDebugger.jdbcPassword = context.config.jdbcPassword
+PluginQueryTimeoutDebugger.skip = !context.config.excludeDockerTest
PluginQueryTimeoutDebugger.logger = logger
PluginQueryTimeoutDebuggerHolder.staticResource.startWorker()
@@ -54,6 +55,7 @@ class PluginQueryTimeoutDebugger {
static public String jdbcUser
static public String jdbcPassword
static public Logger logger
+ static public Boolean skip
private ScheduledExecutorService scheduler
private List<String> backendUrls = []
@@ -61,6 +63,10 @@ class PluginQueryTimeoutDebugger {
// catch all exceptions in timer function.
private void startWorker() {
+ if (skip) {
+ logger.info("docker case skip this plugin")
+ return
+ }
if (scheduler?.isShutdown() == false) {
logger.warn("worker already started")
return
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]