mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Bump catalog update timer from 15min to 3hr.
This should save load on the package server. The tradeoff is it makes the case in #2847 have a wider window to affect users.
This commit is contained in:
@@ -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.)
|
||||
|
||||
Reference in New Issue
Block a user