yiguolei commented on code in PR #38486: URL: https://github.com/apache/doris/pull/38486#discussion_r1696282394
########## fe/fe-core/src/main/java/org/apache/doris/common/publish/TopicPublisherThread.java: ########## @@ -120,7 +122,30 @@ public void run() { try { address = new TNetworkAddress(be.getHost(), be.getBePort()); client = ClientPool.backendPool.borrowObject(address); - client.publishTopicInfo(request); + + // check whether workload group tag math current be + String locationTag = be.getLocationTag().value; + TPublishTopicRequest copiedRequest = new TPublishTopicRequest(request); Review Comment: 调用 .deepCopy() 来确保是深拷贝出来的对象。 -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org