Raise non TLS exception to help debug

new-scoring
aeris 2017-01-02 17:22:40 +01:00
parent d0160f1067
commit a8057ce1ec
1 changed files with 3 additions and 1 deletions

View File

@ -102,7 +102,9 @@ module CryptCheck
end
end
rescue => e
e = "Too long analysis (max #{MAX_ANALYSIS_DURATION.humanize})" if e.message == 'execution expired'
e = Tls::Server::TLSException.new "Too long analysis (max #{MAX_ANALYSIS_DURATION.humanize})" \
if e.message == 'execution expired'
raise unless e.is_a? Tls::Server::TLSException
Logger.error e
[key, AnalysisFailure.new(e)]
end