tweaks to time values

This commit is contained in:
azivner 2017-11-26 17:04:18 -05:00
parent abb122e2a9
commit a92df38479
2 changed files with 5 additions and 5 deletions

View File

@ -176,7 +176,7 @@ function connectWebSocket() {
ws.onmessage = messageHandler; ws.onmessage = messageHandler;
ws.onclose = function(){ ws.onclose = function(){
// Try to reconnect in 5 seconds // Try to reconnect in 5 seconds
setTimeout(() => connectWebSocket(), 1000); setTimeout(() => connectWebSocket(), 5000);
}; };
} }
@ -185,7 +185,7 @@ connectWebSocket();
let lastPingTs = new Date().getTime(); let lastPingTs = new Date().getTime();
let connectionBrokenNotification = null; let connectionBrokenNotification = null;
setInterval(() => { setInterval(async () => {
if (new Date().getTime() - lastPingTs > 5000) { if (new Date().getTime() - lastPingTs > 5000) {
if (!connectionBrokenNotification) { if (!connectionBrokenNotification) {
connectionBrokenNotification = $.notify({ connectionBrokenNotification = $.notify({
@ -194,12 +194,12 @@ setInterval(() => {
},{ },{
// settings // settings
type: 'danger', type: 'danger',
delay: 100000000 delay: 100000000 // keep it until we explicitly close it
}); });
} }
} }
else if (connectionBrokenNotification) { else if (connectionBrokenNotification) {
connectionBrokenNotification.close(); await connectionBrokenNotification.close();
connectionBrokenNotification = null; connectionBrokenNotification = null;
showMessage("Re-connected to server"); showMessage("Re-connected to server");

View File

@ -9,7 +9,7 @@ function showMessage(message) {
},{ },{
// settings // settings
type: 'success', type: 'success',
delay: 1500 delay: 3000
}); });
} }