aho135 commented on code in PR #19069:
URL: https://github.com/apache/druid/pull/19069#discussion_r2881519440


##########
web-console/src/utils/druid-query.ts:
##########
@@ -322,13 +322,35 @@ export class DruidError extends Error {
   }
 }
 
+// Broker service to use for all console queries (for tier isolation)
+let consoleBrokerService: string | undefined;
+
+export function setConsoleBrokerService(brokerService: string | undefined): 
void {
+  consoleBrokerService = brokerService;
+}
+
+export function getConsoleBrokerService(): string | undefined {
+  return consoleBrokerService;
+}

Review Comment:
   Yeah this was added just for consistency, but I can remove it since it's 
unused



-- 
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