improved crash recovery

This commit is contained in:
2024-09-13 13:58:04 +02:00
parent 6cf9e72263
commit 372ebf1057
5 changed files with 59 additions and 9 deletions

View File

@@ -87,7 +87,7 @@ class SocketConnection {
this.reconnectRetryCount += 1;
setTimeout( () => {
this.connect();
}, 500 * this.reconnectRetryCount );
}, 1000 * this.reconnectRetryCount );
}
};
} else {