Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion java/lance-jni/src/dispatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl Dispatcher {
.spawn(move || {
// Attach ONCE and never detach - this is the key optimization
let mut env = jvm
.attach_current_thread_permanently()
.attach_current_thread_as_daemon()
.expect("Failed to attach dispatcher to JVM");

log::info!("JNI dispatcher thread started");
Expand Down
Loading