github-advanced-security[bot] commented on code in PR #17320:
URL:
https://github.com/apache/dolphinscheduler/pull/17320#discussion_r2212092396
##########
dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/ProcessUtils.java:
##########
@@ -100,29 +114,32 @@
// Get all child processes
String pids = getPidsStr(processId);
- String[] pidArray = pids.split("\\s+");
+ String[] pidArray = PID_PATTERN.split(pids);
if (pidArray.length == 0) {
log.warn("No valid PIDs found for process: {}", processId);
return true;
}
+ // Convert PID string to list of integers
+ List<Integer> pidList =
Arrays.stream(pidArray).map(Integer::parseInt).collect(Collectors.toList());
Review Comment:
## Missing catch of NumberFormatException
Potential uncaught 'java.lang.NumberFormatException'.
[Show more
details](https://github.com/apache/dolphinscheduler/security/code-scanning/5471)
--
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]