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.
shell-sidecar
1 parent 2322ac1 commit 6ba9127Copy full SHA for 6ba9127
2 files changed
.changes/fix-sidecar-cleanup.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri": patch
3
4
+
5
+Kill sidecar processes on app exit even when only the `shell-sidecar` feature is enabled.
core/tauri/src/app.rs
@@ -448,7 +448,7 @@ impl<R: Runtime> AppHandle<R> {
448
449
/// Runs necessary cleanup tasks before exiting the process
450
fn cleanup_before_exit(&self) {
451
- #[cfg(shell_execute)]
+ #[cfg(any(shell_execute, shell_sidecar))]
452
{
453
crate::api::process::kill_children();
454
}
0 commit comments