Merge pull request #2107 from overleaf/spd-max-recon-interval

Shrink MAX_RECONNECT_GRACEFULLY_INTERVAL to 45 seconds

GitOrigin-RevId: f84983b772d0dde5fc76d9439a3424cefb66ec06
This commit is contained in:
Simon Detheridge 2019-09-02 13:52:28 +01:00 committed by sharelatex
parent e69b66fac3
commit b57adcf02a

View file

@ -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) {