Skip to content

Commit

Permalink
Merge pull request #2847 from twobraids/more-JIT
Browse files Browse the repository at this point in the history
Fixes Bug 1124241 - added  "no module" predicate
  • Loading branch information
rhelmer committed Jun 10, 2015
2 parents a260655 + 2d4aa4d commit d09356e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions socorro/processor/breakpad_transform_rules.py
Expand Up @@ -688,6 +688,11 @@ def _predicate(self, raw_crash, raw_dumps, processed_crash, proc_meta):
):
# we don't want any of these
return False
if processed_crash.json_dump.crashing_thread.frames[0].get(
'module',
False
): # there is a module at the top of the stack, we don't want this
return False
return (
processed_crash.signature.endswith('EnterBaseline')
or processed_crash.signature.endswith('EnterIon')
Expand Down

0 comments on commit d09356e

Please sign in to comment.