yiguolei commented on code in PR #31106: URL: https://github.com/apache/doris/pull/31106#discussion_r1495302373
########## fe/fe-core/src/main/java/org/apache/doris/resource/workloadgroup/WorkloadGroup.java: ########## @@ -208,6 +210,19 @@ private static void checkProperties(Map<String, String> properties) throws DdlEx } } + if (properties.containsKey(SCAN_THREAD_NUM)) { + String value = properties.get(SCAN_THREAD_NUM); + try { + int intValue = Integer.parseInt(value); + if (intValue <= 0 && intValue != -1) { + throw new NumberFormatException(); Review Comment: Add detail explain in exception message -- 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