From db522688ac4c4b9d3df323300c471f2b23f49569 Mon Sep 17 00:00:00 2001 From: kaichaosun Date: Tue, 4 Aug 2026 11:52:09 +0800 Subject: [PATCH] chore: reset retry to 0 for test purpose --- extensions/components/src/contact_registry/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/components/src/contact_registry/store.rs b/extensions/components/src/contact_registry/store.rs index 251cf39..6ab9006 100644 --- a/extensions/components/src/contact_registry/store.rs +++ b/extensions/components/src/contact_registry/store.rs @@ -355,7 +355,7 @@ fn decode_payload(payload: &[u8]) -> Option<(u64, &[u8])> { /// well inside chat_module's ~20s init IPC budget. A fully unreachable registry /// instead costs up to MAX_RETRIES times the reqwest timeout, which no retry /// budget can rescue. -const MAX_RETRIES: u32 = 4; +const MAX_RETRIES: u32 = 0; const RETRY_BASE_MS: u64 = 200; const RETRY_MAX_BACKOFF_MS: u64 = 2000;