kfaraz commented on code in PR #19011:
URL: https://github.com/apache/druid/pull/19011#discussion_r2909679042


##########
server/src/main/java/org/apache/druid/client/coordinator/CoordinatorClientImpl.java:
##########
@@ -253,6 +254,22 @@ public ListenableFuture<CoordinatorDynamicConfig> 
getCoordinatorDynamicConfig()
     );
   }
 
+  @Override
+  public ListenableFuture<BrokerDynamicConfig> getBrokerDynamicConfig()
+  {
+    return FutureUtils.transform(
+        client.asyncRequest(
+            new RequestBuilder(HttpMethod.GET, 
"/druid/coordinator/v1/broker/config"),
+            new BytesFullResponseHandler()
+        ),
+        holder -> JacksonUtils.readValue(

Review Comment:
   Yes, that must be the reason.
   
   Probably just catching the not found exception and continuing with the 
Broker start up should suffice.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to