From 39c976988181e9556b827d45a61a9d133f098359 Mon Sep 17 00:00:00 2001 From: Hugo Trentesaux <hugo@trentesaux.fr> Date: Wed, 17 Jan 2024 14:03:07 +0100 Subject: [PATCH] increase node spawn timeout to avoid failure --- end2end-tests/tests/common/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/end2end-tests/tests/common/mod.rs b/end2end-tests/tests/common/mod.rs index b147b9783..d69a00c15 100644 --- a/end2end-tests/tests/common/mod.rs +++ b/end2end-tests/tests/common/mod.rs @@ -233,9 +233,9 @@ fn spawn_full_node( let timeout = if let Ok(duration_string) = std::env::var("DUNITER_END2END_TESTS_SPAWN_NODE_TIMEOUT") { - duration_string.parse().unwrap_or(4) + duration_string.parse().unwrap_or(10) } else { - 4 + 10 }; wait_until_log_line( -- GitLab