Skip to content
Snippets Groups Projects
Commit 37582b66 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

Bug 1370539 - Fix logic error around skipping package metrics; r=nalexander, a=RyanVM

b227363d66bb added a config item and code for disabling package
metrics, which don't work everywhere.

The previous logic was faulty.

MozReview-Commit-ID: BGxWgmWxXyH

Pushing on a CLOSED TREE

--HG--
extra : amend_source : 99ca472e4c0fca306deec4038e9c7cbfe5412b0a
parent cd09b990
No related branches found
No related tags found
No related merge requests found
......@@ -2033,7 +2033,7 @@ or run without that action (ie: --no-{action})"
"suites": [],
}
if not c.get('debug_build') or c.get('disable_package_metrics'):
if not c.get('debug_build') and not c.get('disable_package_metrics'):
perfherder_data['suites'].extend(self._get_package_metrics())
# Extract compiler warnings count.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment