We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8067114 commit 6a42f44Copy full SHA for 6a42f44
airbyte-workers/src/main/java/io/airbyte/workers/process/KubePodProcess.java
@@ -682,11 +682,11 @@ private Container getMainContainerFromPodDefinition() {
682
.filter(c -> c.getName().contentEquals(MAIN_CONTAINER_NAME))
683
.findFirst();
684
if (containerOptional.isEmpty()) {
685
- throw new RuntimeException(String.format("Could not find main container definition for pod: %s", podDefinition.getMetadata().getName()));
+ LOGGER.warn(String.format("Could not find main container definition for pod: %s", podDefinition.getMetadata().getName()));
686
+ return null;
687
} else {
688
return containerOptional.get();
689
}
-
690
691
692
@Override
0 commit comments