Skip to content

Commit

Permalink
Fix server start timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Dec 15, 2024
1 parent 85a59b0 commit cdc5040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/daemonizing_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit cdc5040

Please sign in to comment.