dataroaring commented on code in PR #38834: URL: https://github.com/apache/doris/pull/38834#discussion_r1772459495
########## fe/fe-core/src/main/java/org/apache/doris/alter/CloudSchemaChangeJobV2.java: ########## @@ -83,7 +84,12 @@ public CloudSchemaChangeJobV2(String rawSql, long jobId, long dbId, long tableId super(rawSql, jobId, dbId, tableId, tableName, timeoutMs); ConnectContext context = ConnectContext.get(); if (context != null) { - String clusterName = context.getCloudCluster(); + String clusterName = ""; + try { + clusterName = context.getCloudCluster(); + } catch (ComputeGroupException e) { + LOG.warn("failed to get cluster name", e); Review Comment: failed to get compute group name. -- 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