Lower reconnect threshold
This commit is contained in:
parent
d421ceffa6
commit
07d17ede5f
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ public class Connector {
|
|||
}
|
||||
} else {
|
||||
if (!serviceConnector.isConnectedToService()) {
|
||||
if (serviceReconnects > 2) {
|
||||
if (serviceReconnects > 0) {
|
||||
serviceConnector = null;
|
||||
init();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue