From ba25364895bdcf4c75dbbbe4f997bd8df3257f1c Mon Sep 17 00:00:00 2001 From: Michael Comella Date: Tue, 11 Jan 2022 16:58:55 -0800 Subject: [PATCH] Closes #23150: remove 'threads' feature setup-startup-profiling.py. Root cause: Bug 1729815 removed the threads feature and, because of Bug 1749498, we crash if a feature is provided that does not exist. The immediate solution is to remove the unused threads feature. --- tools/setup-startup-profiling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/setup-startup-profiling.py b/tools/setup-startup-profiling.py index cc02b3c396..8bfeb50d2c 100755 --- a/tools/setup-startup-profiling.py +++ b/tools/setup-startup-profiling.py @@ -23,7 +23,7 @@ PRODUCTS = [PROD_FENIX, PROD_GVE] GV_CONFIG = b'''env: MOZ_PROFILER_STARTUP: 1 MOZ_PROFILER_STARTUP_INTERVAL: 5 - MOZ_PROFILER_STARTUP_FEATURES: threads,js,stackwalk,leaf,screenshots,ipcmessages,java,cpu + MOZ_PROFILER_STARTUP_FEATURES: js,stackwalk,leaf,screenshots,ipcmessages,java,cpu MOZ_PROFILER_STARTUP_FILTERS: GeckoMain,Compositor,Renderer,IPDL Background '''