From cdc50408f219aad77a8ff22242aeda9332d69879 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Mon, 16 Dec 2024 01:27:06 +1300 Subject: [PATCH] Fix server start timeout. --- spec/daemonizing_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/daemonizing_spec.rb b/spec/daemonizing_spec.rb index 0beab8d3..bf98c478 100644 --- a/spec/daemonizing_spec.rb +++ b/spec/daemonizing_spec.rb @@ -183,6 +183,6 @@ def name private def wait_for_server_to_start - expect{sleep 0.1 until File.exist?(subject.pid_file)}.to take_less_then(10) + expect{sleep(0.1) until File.exist?(subject.pid_file)}.to take_less_then(60) end end