Skip to content

Commit 349d32b

Browse files
Update jupyter console command
1 parent 430a537 commit 349d32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jjava-distro/src/test/java/org/dflib/jjava/distro/ContainerizedKernelCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected static Container.ExecResult executeInKernel(String snippet) throws IOE
6565

6666
protected static Container.ExecResult executeInKernel(String snippet, Map<String, String> env) throws IOException, InterruptedException {
6767
String snippet64 = Base64.getEncoder().encodeToString(snippet.getBytes());
68-
String jupyterCommand = venvCommand("jupyter console --kernel=java --simple-prompt");
68+
String jupyterCommand = venvCommand("jupyter console --kernel=java --simple-prompt --no-confirm-exit -y");
6969
String[] containerCommand = new String[]{"bash", "-c", "echo \"" + snippet64 + "\" | base64 -d | " + jupyterCommand};
7070
Container.ExecResult execResult = container.execInContainer(ExecConfig.builder()
7171
.envVars(env)

0 commit comments

Comments
 (0)