Skip to content

Commit

Permalink
Bug 1476582 - Adapt to changes in app update policy (#494)
Browse files Browse the repository at this point in the history
Can no longer disable updates completely via preferences
(https://bugzilla.mozilla.org/show_bug.cgi?id=1420514), so let's disable
automatically updating.
  • Loading branch information
wlach committed Jul 19, 2018
1 parent 638b5ba commit 062a126
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mozregression/launchers.py
Expand Up @@ -282,8 +282,13 @@ class FirefoxRegressionProfile(Profile):
Some preferences may only apply to one or the other
"""

preferences = { # Don't automatically update the application
preferences = {
# Don't automatically update the application (only works on older
# versions of Firefox)
'app.update.enabled': False,
# On newer versions of Firefox (where disabling automatic updates
# is impossible, at least don't update automatically)
'app.update.auto': False,
# Don't restore the last open set of tabs
# if the browser has crashed
'browser.sessionstore.resume_from_crash': False,
Expand Down

0 comments on commit 062a126

Please sign in to comment.