From 92eb1b6d9cf2e523a4aea945ad6e2e9e38a9ac3c Mon Sep 17 00:00:00 2001 From: Sheikh Limon Date: Mon, 18 May 2026 20:32:39 +0600 Subject: [PATCH] fix(config): check file fallback when keyring has no entry (#9279) Signed-off-by: sheikhlimon --- crates/goose/src/config/base.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/goose/src/config/base.rs b/crates/goose/src/config/base.rs index acead899..20c5dda0 100644 --- a/crates/goose/src/config/base.rs +++ b/crates/goose/src/config/base.rs @@ -594,7 +594,7 @@ impl Config { if msg.contains("No entry found") || msg.contains("No matching entry found") => { - HashMap::new() + self.fallback_to_file_storage()? } Err(e) => return Err(e), }