Lower reconnect threshold

This commit is contained in:
Jamorham 2018-01-25 21:26:11 +00:00
parent d421ceffa6
commit 07d17ede5f
No known key found for this signature in database
GPG key ID: 0BC5C3E0AAD64DF9

View file

@ -115,7 +115,7 @@ public class Connector {
}
} else {
if (!serviceConnector.isConnectedToService()) {
if (serviceReconnects > 2) {
if (serviceReconnects > 0) {
serviceConnector = null;
init();
} else {