From 9b10e99708b961465c4a608f19462840a60b9364 Mon Sep 17 00:00:00 2001 From: Marshall Culpepper Date: Fri, 14 Sep 2012 18:06:22 -0500 Subject: [PATCH] Bug 787398: Change B2G update prefs for nightly updates. r=cjones --- b2g/app/b2g.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/b2g/app/b2g.js b/b2g/app/b2g.js index 51b8cb6a3956..beaac16af619 100644 --- a/b2g/app/b2g.js +++ b/b2g/app/b2g.js @@ -452,13 +452,13 @@ pref("app.update.staging.enabled", true); pref("app.update.service.enabled", true); // The URL hosting the update manifest. -pref("app.update.url", "http://update.boot2gecko.org/m2.5/updates.xml"); +pref("app.update.url", "http://update.boot2gecko.org/nightly/update.xml"); // Interval at which update manifest is fetched. In units of seconds. -pref("app.update.interval", 3600); // 1 hour +pref("app.update.interval", 86400); // 1 day // First interval to elapse before checking for update. In units of // milliseconds. Capped at 10 seconds. -pref("app.update.timerFirstInterval", 30000); -pref("app.update.timerMinimumDelay", 30); // seconds +pref("app.update.timerFirstInterval", 3600000); // 1 hour +pref("app.update.timerMinimumDelay", 3600); // 1 hour in seconds // Don't throttle background updates. pref("app.update.download.backgroundInterval", 0);