diff --git a/share/www/script/jquery.couch.js b/share/www/script/jquery.couch.js index 6abac2c6d78..1cb4b6d903f 100644 --- a/share/www/script/jquery.couch.js +++ b/share/www/script/jquery.couch.js @@ -452,7 +452,11 @@ options.error = function() { if (active) { setTimeout(getChangesSince, timeout); - timeout = timeout * 2; + + if (timeout < 5000) + { + timeout = timeout * 2; + } } }; // actually make the changes request