From 6a296597b62fed97fe762cd778380484cb74c324 Mon Sep 17 00:00:00 2001 From: Antonio Morrone Date: Thu, 14 Sep 2023 14:59:53 +0200 Subject: [PATCH] ci(debug): debug failing test --- core/bin/prover/tests/tests.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/bin/prover/tests/tests.rs b/core/bin/prover/tests/tests.rs index 70a586830f..c9438eec8f 100644 --- a/core/bin/prover/tests/tests.rs +++ b/core/bin/prover/tests/tests.rs @@ -204,7 +204,8 @@ async fn test_receiving_heartbeats() { &prover_name, ) .fuse(); - let timeout = tokio::time::sleep(Duration::from_secs(10)).fuse(); + // FIXME: reset the timeout option + let timeout = tokio::time::sleep(Duration::from_secs(30)).fuse(); pin_mut!(prover_work_cycle, timeout);