Add log statement (#1620)

This commit is contained in:
erabii
2024-04-02 22:17:41 +03:00
committed by GitHub
parent c79ce2dec9
commit 4194a22304

View File

@@ -109,6 +109,9 @@ public class KubernetesClientPodUtils implements PodUtils<V1Pod> {
}
catch (Throwable t) {
if (failFast) {
if (t instanceof ApiException apiException) {
LOG.error("error reading pod : " + apiException.getResponseBody());
}
throw new RuntimeException(t);
}
if (t instanceof ApiException apiException) {