From: Matteo Nastasi (mop) Date: Wed, 5 Dec 2012 09:10:43 +0000 (+0100) Subject: keepalives_eq_max management fixed to have a correct count of seconds X-Git-Tag: v4.4.0~5 X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=428188cc059efade2698f32a0b40861af626cfde;p=brisk.git keepalives_eq_max management fixed to have a correct count of seconds --- diff --git a/web/xynt-streaming.js b/web/xynt-streaming.js index 7e61638..47ca442 100644 --- a/web/xynt-streaming.js +++ b/web/xynt-streaming.js @@ -365,8 +365,8 @@ xynt_streaming.prototype = { keepalive_new: -1, keepalives_equal: 0, /* NOTE: right watch_timeout value to 100, for devel reasons use 1000 or more */ - /* restart after 3 * 40 * 100 millisec if server ping is missing => 12secs */ - keepalives_eq_max: 3, + /* restart after 4 * 40 * 100 millisec if server ping is missing => 16secs */ + keepalives_eq_max: 4, watchdog_checktm: 40, // FIXME watchdog_timeout: 100, watchdog_timeout: 100, @@ -478,7 +478,7 @@ xynt_streaming.prototype = { this.keepalives_equal = 0; } - if (this.keepalives_equal > this.keepalives_eq_max) { + if (this.keepalives_equal >= this.keepalives_eq_max) { this.log("hs::watchdog: MAX ACHIEVED "+this.keepalives_equal); this.reload(); // alert("watchdog return reload");