This is an automated email from the ASF dual-hosted git repository.

gian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a816015717 Prevent Coordinator startup failure (#19265)
8a816015717 is described below

commit 8a8160157172e14a3052597e2cff4950d8ede245
Author: Virushade <[email protected]>
AuthorDate: Wed Apr 8 14:36:42 2026 +0800

    Prevent Coordinator startup failure (#19265)
---
 .../src/main/java/org/apache/druid/guice/SegmentSchemaCacheModule.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/services/src/main/java/org/apache/druid/guice/SegmentSchemaCacheModule.java 
b/services/src/main/java/org/apache/druid/guice/SegmentSchemaCacheModule.java
index 744d56a89e0..80f85c0d1c4 100644
--- 
a/services/src/main/java/org/apache/druid/guice/SegmentSchemaCacheModule.java
+++ 
b/services/src/main/java/org/apache/druid/guice/SegmentSchemaCacheModule.java
@@ -31,6 +31,7 @@ import org.apache.druid.query.DefaultQueryConfig;
 import org.apache.druid.query.GenericQueryMetricsFactory;
 import org.apache.druid.query.MapQueryToolChestWarehouse;
 import org.apache.druid.query.Query;
+import org.apache.druid.query.QueryConfigProvider;
 import org.apache.druid.query.QueryRunnerFactory;
 import org.apache.druid.query.QuerySegmentWalker;
 import org.apache.druid.query.QueryToolChest;
@@ -62,6 +63,7 @@ public class SegmentSchemaCacheModule implements Module
     JsonConfigProvider.bind(binder, "druid.coordinator.segmentMetadata", 
SegmentMetadataQueryConfig.class);
     JsonConfigProvider.bind(binder, "druid.coordinator.query.scheduler", 
QuerySchedulerProvider.class, Global.class);
     JsonConfigProvider.bind(binder, "druid.coordinator.query.default", 
DefaultQueryConfig.class);
+    binder.bind(QueryConfigProvider.class).to(DefaultQueryConfig.class);
     JsonConfigProvider.bind(binder, "druid.coordinator.query.retryPolicy", 
RetryQueryRunnerConfig.class);
     JsonConfigProvider.bind(binder, "druid.coordinator.internal.query.config", 
InternalQueryConfig.class);
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to