diff --git a/tools/run-updater.js b/tools/run-updater.js index 10a78a88e5..95c78a121f 100644 --- a/tools/run-updater.js +++ b/tools/run-updater.js @@ -17,11 +17,11 @@ _.extend(Updater.prototype, { if (self.timer) throw new Error("already running?"); - // Check every 15 minutes. (Should not share buildmessage state with + // Check every 3 hours. (Should not share buildmessage state with // the main fiber.) self.timer = setInterval(fiberHelpers.inBareFiber(function () { self._check(); - }), 15 * 60 * 1000); + }), 3 * 60 * 60 * 1000); // Also start a check now, but don't block on it. (This should // not share buildmessage state with the main fiber.)