Skip to content

Commit ef2cad6

Browse files
committed
Handle Errno::ECONNREFUSED
Which happens if the socket file is hanging around but the server process is gone.
1 parent 39f6b6f commit ef2cad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/spring/client/run.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def connect
2626
def call
2727
begin
2828
connect
29-
rescue Errno::ENOENT, Errno::ECONNRESET
29+
rescue Errno::ENOENT, Errno::ECONNRESET, Errno::ECONNREFUSED
3030
cold_run
3131
else
3232
warm_run

0 commit comments

Comments
 (0)