gavinchou commented on code in PR #40264: URL: https://github.com/apache/doris/pull/40264#discussion_r1751257762
########## fe/fe-core/src/main/java/org/apache/doris/cloud/catalog/CloudEnv.java: ########## @@ -175,14 +212,19 @@ protected void getClusterIdAndRole() throws IOException { try { nodeInfoPB = getLocalTypeFromMetaService(); } catch (Exception e) { - LOG.warn("failed to get local fe's type, sleep 5 s, try again. exception: {}", e.getMessage()); + LOG.warn("failed to get local fe's type, sleep {} s, try again. exception: {}", + e.getMessage(), Config.resource_not_ready_sleep_seconds); Review Comment: wrong position of the 2 arguments ```suggestion Config.resource_not_ready_sleep_seconds, e.getMessage()); ``` -- 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