From 583fa443c91e1dee1d6afeea477560eb68e0e2fe Mon Sep 17 00:00:00 2001 From: Alexander Bushnev Date: Sat, 16 Mar 2024 00:52:42 +0100 Subject: [PATCH] Fix timeout_ms default value client config --- DEFAULT_CONFIG.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEFAULT_CONFIG.json5 b/DEFAULT_CONFIG.json5 index c46c67dd1a..1f9094efa6 100644 --- a/DEFAULT_CONFIG.json5 +++ b/DEFAULT_CONFIG.json5 @@ -24,7 +24,7 @@ connect: { /// timeout waiting for all endpoints connected (0: no retry, -1: infinite timeout) /// Accepts a single value or different values for router, peer and client. - timeout_ms: -1, + timeout_ms: { router: -1, peer: -1, client: 0 }, endpoints: [ // "/
"