Bug 1651605 - Disable Service Worker support in DevTools Debugger r=Honza

We ran an experiment to assess the impact of the feature.
We could verify a significant performance impact on the opening times for the debugger.
It also led to a decrease in overall devtools usage and retention.
Therefore we are disabling the feature until we can implement it with better performance.
This should be implemented with https://bugzilla.mozilla.org/show_bug.cgi?id=1651522

Differential Revision: https://phabricator.services.mozilla.com/D83312
This commit is contained in:
Julian Descottes 2020-07-14 08:44:59 +00:00
Родитель ee49d74c3b
Коммит a595fcea96
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -4690,7 +4690,9 @@ pref("devtools.errorconsole.deprecation_warnings", true);
#endif
pref("devtools.debugger.features.watchpoints", true);
pref("devtools.debugger.features.windowless-service-workers", true);
// Disable service worker debugging on all channels (see Bug 1651605).
pref("devtools.debugger.features.windowless-service-workers", false);
// Disable remote debugging protocol logging.
pref("devtools.debugger.log", false);