From 4cf53ba36f0eb0627c4a1fac3af05433e57b1376 Mon Sep 17 00:00:00 2001 From: sheikhlimon Date: Sat, 16 May 2026 22:29:16 +0600 Subject: [PATCH] fix(config): check file fallback when keyring has no entry 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 acead899de11..20c5dda067f9 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), }