From 5a0a9475564963d6fbbc058457f29ecd4d1420d4 Mon Sep 17 00:00:00 2001 From: OlivierDehaene <23298448+OlivierDehaene@users.noreply.github.com> Date: Fri, 16 Dec 2022 15:48:42 +0100 Subject: [PATCH] increase waiting time --- launcher/tests/integration_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/tests/integration_tests.rs b/launcher/tests/integration_tests.rs index 92905098..9f0416c0 100644 --- a/launcher/tests/integration_tests.rs +++ b/launcher/tests/integration_tests.rs @@ -62,7 +62,7 @@ fn start_launcher(model_name: String, num_shard: usize, port: usize, master_port } }); - for _ in 0..30 { + for _ in 0..60 { let health = reqwest::blocking::get(format!("http://localhost:{}/health", port)); if health.is_ok() { return launcher;