Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

Commit

Permalink
Merge pull request #156 from czaks/master
Browse files Browse the repository at this point in the history
HTTPS: EPIPE can happen here as well
  • Loading branch information
tarcieri committed Jul 23, 2014
2 parents 27339b6 + abff75e commit 28f7494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reel/server/https.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def run
loop do
begin
socket = @server.accept
rescue OpenSSL::SSL::SSLError, Errno::ECONNRESET => ex
rescue OpenSSL::SSL::SSLError, Errno::ECONNRESET, Errno::EPIPE => ex
Logger.warn "Error accepting SSLSocket: #{ex.class}: #{ex.to_s}"
retry
end
Expand Down

0 comments on commit 28f7494

Please sign in to comment.