[Fix-14447][K8S Task] Fix IndexOutofBoundsException for pod name without dash (#14448)
This commit is contained in:
parent
107643dba8
commit
742a2dc780
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue