Make the comms link be more tolerant to temporarily blips

This commit is contained in:
Nick O'Leary 2015-09-23 17:15:28 +01:00
parent f9fb97adf2
commit da64c018ac
1 changed files with 4 additions and 1 deletions

View File

@ -22,6 +22,7 @@ RED.comms = (function() {
var subscriptions = {};
var ws;
var pendingAuth = false;
var reconnectAttempts = 0;
function connectWS() {
var path = location.hostname;
@ -46,6 +47,7 @@ RED.comms = (function() {
ws = new WebSocket(path);
ws.onopen = function() {
reconnectAttempts = 0;
if (errornotification) {
clearErrorTimer = setTimeout(function() {
errornotification.close();
@ -80,12 +82,13 @@ RED.comms = (function() {
}
};
ws.onclose = function() {
if (errornotification == null) {
if (reconnectAttempts > 5 && errornotification == null) {
errornotification = RED.notify(RED._("notification.error",{message:RED._("notification.errors.lostConnection")}),"error",true);
} else if (clearErrorTimer) {
clearTimeout(clearErrorTimer);
clearErrorTimer = null;
}
reconnectAttempts++;
setTimeout(connectWS,1000);
}
}