Revert "BaseManager: Consider SSLHandshakeExceptions as real issues."

This change was mostly flagging non-real issues, like connection reset
by peer. Revert for now and come up with an alternative solution.

This reverts commit d3ad17e0bb.
pull/96/head
Tom Hacohen 5 years ago
parent 37a1c06dbd
commit 1bbf00c6bd

@ -7,7 +7,6 @@ import java.io.ByteArrayOutputStream
import java.io.IOException
import java.net.HttpURLConnection
import java.util.logging.Level
import javax.net.ssl.SSLHandshakeException
abstract class BaseManager {
@ -22,10 +21,6 @@ abstract class BaseManager {
response = client!!.newCall(request).execute()
} catch (e: IOException) {
Logger.log.log(Level.SEVERE, "Failed while connecting to server", e)
if (e is SSLHandshakeException) {
// We don't want to ignore SSLHandshake issues like we do normal IO exceptions
throw e
}
throw Exceptions.ServiceUnavailableException("[" + e.javaClass.name + "] " + e.localizedMessage)
}

Loading…
Cancel
Save