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

HTTPS: EPIPE can happen here as well #156

Merged
merged 1 commit into from Jul 23, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/reel/server/https.rb
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