From d7846bbe6001a06222ffa32d250484c5d35d1962 Mon Sep 17 00:00:00 2001 From: sandreim <54316454+sandreim@users.noreply.github.com> Date: Mon, 27 Dec 2021 19:44:42 +0200 Subject: [PATCH] Bump sleep from 10 to 30s (#4613) Signed-off-by: Andrei Sandu --- node/metrics/src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/metrics/src/tests.rs b/node/metrics/src/tests.rs index d0e632182470..6ee7b1cfcc49 100644 --- a/node/metrics/src/tests.rs +++ b/node/metrics/src/tests.rs @@ -43,7 +43,7 @@ fn runtime_can_publish_metrics() { .expect("failed to start the node process"); // Enough time to author one block. - thread::sleep(Duration::from_secs(10)); + thread::sleep(Duration::from_secs(30)); let runtime = tokio::runtime::Runtime::new().expect("failed to create tokio runtime");