From b57adcf02a9b15d2be6931d6963ebc19cdfcbc06 Mon Sep 17 00:00:00 2001 From: Simon Detheridge Date: Mon, 2 Sep 2019 13:52:28 +0100 Subject: [PATCH] Merge pull request #2107 from overleaf/spd-max-recon-interval Shrink MAX_RECONNECT_GRACEFULLY_INTERVAL to 45 seconds GitOrigin-RevId: f84983b772d0dde5fc76d9439a3424cefb66ec06 --- services/web/public/src/ide/connection/ConnectionManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/src/ide/connection/ConnectionManager.js b/services/web/public/src/ide/connection/ConnectionManager.js index 4ce62ce696..871a8ff5e8 100644 --- a/services/web/public/src/ide/connection/ConnectionManager.js +++ b/services/web/public/src/ide/connection/ConnectionManager.js @@ -27,7 +27,7 @@ define([], function() { this.prototype.BACKGROUND_RETRY_INTERVAL = 5 * 1000 this.prototype.RECONNECT_GRACEFULLY_RETRY_INTERVAL = 5000 // ms - this.prototype.MAX_RECONNECT_GRACEFULLY_INTERVAL = 60 * 5 * 1000 + this.prototype.MAX_RECONNECT_GRACEFULLY_INTERVAL = 45 * 1000 } constructor(ide, $scope) {