mirror of
https://github.com/redmine/redmine.git
synced 2026-03-02 10:31:33 +01:00
rdm-mailhandler.rb should catch EOFError (#18922).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@13961 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -129,7 +129,7 @@ class RedmineMailHandler
|
||||
debug "Posting to #{uri}..."
|
||||
begin
|
||||
response = Net::HTTPS.post_form(URI.parse(uri), data, headers, :no_check_certificate => no_check_certificate)
|
||||
rescue SystemCallError => e # connection refused, etc.
|
||||
rescue SystemCallError, IOError => e # connection refused, etc.
|
||||
warn "An error occured while contacting your Redmine server: #{e.message}"
|
||||
return 75 # temporary failure
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user