Skip to content

Commit

Permalink
Merge pull request mozilla-services#692 from twobraids/bug773019-sign…
Browse files Browse the repository at this point in the history
…ature-fix

fixes bug 773019 - added from string coverter for sentinels to fix ini writing
  • Loading branch information
twobraids committed Jul 11, 2012
2 parents 4b9603f + ce6452b commit df987d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions socorro/processor/signature_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class CSignatureTool(SignatureTool):
'signature_sentinels',
doc='a list of frame signatures that should always be considered top '
'of the stack if present in the stack',
default=['_purecall',
default="""['_purecall',
('mozilla::ipc::RPCChannel::Call(IPC::Message*, IPC::Message*)',
lambda x: 'CrashReporter::CreatePairedMinidumps(void*, '
'unsigned long, nsAString_internal*, nsILocalFile**, '
Expand All @@ -54,7 +54,8 @@ class CSignatureTool(SignatureTool):
'google_breakpad::ExceptionHandler::HandleInvalidParameter'
'(wchar_t const*, wchar_t const*, wchar_t const*, unsigned '
'int, unsigned int)'
]
]""",
from_string_converter=eval
)
required_config.add_option(
'irrelevant_signature_re',
Expand Down

0 comments on commit df987d5

Please sign in to comment.