This is an automated email from the ASF dual-hosted git repository.
kerwin pushed a commit to branch 3.1.8-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/3.1.8-prepare by this push:
new 102a9ae32c [Fix-14447][K8S Task] Fix IndexOutofBoundsException for pod
name without dash (#14448)
102a9ae32c is described below
commit 102a9ae32cb2370f47777d6c21771b7fa5dead99
Author: fuchanghai <[email protected]>
AuthorDate: Fri Jul 7 12:53:16 2023 +0800
[Fix-14447][K8S Task] Fix IndexOutofBoundsException for pod name without
dash (#14448)
---
.../org/apache/dolphinscheduler/plugin/task/api/utils/K8sUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/K8sUtils.java
b/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/K8sUtils.java
index c50596bb02..ee281a371f 100644
---
a/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/K8sUtils.java
+++
b/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/K8sUtils.java
@@ -98,7 +98,7 @@ public class K8sUtils {
String podName = null;
for (Pod pod : podList) {
podName = pod.getMetadata().getName();
- if (jobName.equals(podName.substring(0,
pod.getMetadata().getName().lastIndexOf("-")))) {
+ if (podName.contains("-") &&
jobName.equals(podName.substring(0, podName.lastIndexOf("-")))) {
break;
}
}