Skip to content

Commit d05be0f

Browse files
committed
[GR-66535] Unclosed external engine prevents host app termination.
PullRequest: graal/21256
2 parents 91f06f7 + 42526d8 commit d05be0f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sdk/src/org.graalvm.nativebridge/src/org/graalvm/nativebridge/ProcessIsolateThreadSupport.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ Future<Boolean> connectInBackgroundThread() {
179179
}
180180
});
181181
thread.setName(String.format("%s Connection Listen Thread", ProcessIsolateThreadSupport.class.getSimpleName()));
182+
thread.setDaemon(true);
182183
thread.start();
183184
return result;
184185
}

0 commit comments

Comments
 (0)