From a3cf34c4e236a43d0e71b8e6fa497131ae9d7fb1 Mon Sep 17 00:00:00 2001 From: adrian Date: Mon, 13 Apr 2026 11:14:13 -0700 Subject: [PATCH] Fix agent identity secret path for Bazel --- codex-rs/core/src/agent_identity.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/agent_identity.rs b/codex-rs/core/src/agent_identity.rs index c46cdd294a..f1b25f8cdb 100644 --- a/codex-rs/core/src/agent_identity.rs +++ b/codex-rs/core/src/agent_identity.rs @@ -109,7 +109,7 @@ impl AgentIdentityManager { Self { auth_manager, secrets_manager: SecretsManager::new( - config.codex_home.clone(), + config.codex_home.to_path_buf(), SecretsBackendKind::Local, ), chatgpt_base_url: config.chatgpt_base_url.clone(),