Bug 1364393 - Skip Histograms.json record_in_process check in non-strict mode. r=chutten, r=frank

This commit is contained in:
Georg Fritzsche
2017-05-12 21:49:33 +07:00
parent 2cd1e0c9ba
commit 67472b6fb8

View File

@@ -305,6 +305,9 @@ associated with the histogram. Returns None if no guarding is necessary."""
(name, pattern, ', '.join(invalid)))
def check_record_in_processes(self, name, definition):
if not self._strict_type_checks:
return
field = 'record_in_processes'
rip = definition.get(field)