From 190b8299b75b7093add200199cf70221683eb98a Mon Sep 17 00:00:00 2001 From: Heinrich Apfelmus Date: Wed, 3 Jul 2024 13:34:19 +0200 Subject: [PATCH] Increase timeout of `wait_until_node_synced` --- test/e2e/Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/Rakefile b/test/e2e/Rakefile index 25769454b0a..6e0b376af5e 100644 --- a/test/e2e/Rakefile +++ b/test/e2e/Rakefile @@ -117,7 +117,7 @@ task :wait_until_node_synced do network = CardanoWallet.new.misc.network # allow 180 mins for connecting to the node in case it needs to replay ledger - timeout = 300 + timeout = 180*60 current_time = Time.now timeout_treshold = current_time + timeout log "Timeout: #{timeout}s"