From 800133361dfaf510424ceb0097a4d39fa892b2a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Andr=C3=A9?= Date: Sun, 15 Mar 2026 01:10:05 +0100 Subject: [PATCH] fix(tauri): remove stray perf emission from auth cookie PR Drop the startup instrumentation call that leaked into the auth-cookie isolation branch. The helper is not defined on this PR branch, and the PR does not need to serialize the generated cookie name to fix the multi-instance auth collision. --- packages/tauri-app/src-tauri/src/cli_manager.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/tauri-app/src-tauri/src/cli_manager.rs b/packages/tauri-app/src-tauri/src/cli_manager.rs index 518e6cd4..002f00ec 100644 --- a/packages/tauri-app/src-tauri/src/cli_manager.rs +++ b/packages/tauri-app/src-tauri/src/cli_manager.rs @@ -432,11 +432,6 @@ impl CliProcessManager { resolution.runner, resolution.entry, host )); let auth_cookie_name = Arc::new(generate_auth_cookie_name()); - emit_perf_startup( - &app, - "cli.auth.cookie.generated", - json!({ "cookieName": auth_cookie_name }), - ); let args = resolution.build_args(dev, &host, auth_cookie_name.as_str()); log_line(&format!("CLI args: {:?}", args)); if dev {