Skip to content

Commit

Permalink
#65 Debug /opt/kafka/config/ not writable
Browse files Browse the repository at this point in the history
  • Loading branch information
cer committed Aug 20, 2024
1 parent baf0fc4 commit 2712d1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public void registerProperties(BiConsumer<String, Supplier<Object>> registry) {

@Override
protected void containerIsStarting(InspectContainerResponse containerInfo) {
super.containerIsStarting(containerInfo);
try {
ExecResult result = execInContainer("ls", "-ltd", "/opt/kafka/config/");
System.out.println("ls -ltd /opt/kafka/config/: " + result.getExitCode());
Expand All @@ -52,5 +51,6 @@ protected void containerIsStarting(InspectContainerResponse containerInfo) {
} catch (IOException | InterruptedException e) {
throw new RuntimeException(e);
}
super.containerIsStarting(containerInfo);
}
}

0 comments on commit 2712d1d

Please sign in to comment.