[Fix-14447][K8S Task] Fix IndexOutofBoundsException for pod name without dash (#14448)

This commit is contained in:
fuchanghai 2023-07-07 12:53:16 +08:00 committed by GitHub
parent 107643dba8
commit 742a2dc780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,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;
}
}