-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy-duplicat-info - Avoid to nag forever because a bug hasn't a cf_crash_signature field #1237
base: master
Are you sure you want to change the base?
Conversation
…rash_signature field
@@ -117,6 +117,10 @@ def compare(self, bugs, dups): | |||
|
|||
dup = dups[dupid] | |||
bs = utils.get_signatures(info["signature"]) | |||
if dup["signature"] is None: | |||
# some bugs don't have a cf_crash_signature field... it's weird |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you ask dkl about this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes in #bmo on slack.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the problem? Is it a bug or a feature? :P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if dup["signature"] is None: | ||
# some bugs don't have a cf_crash_signature field... it's weird | ||
# but it's life... | ||
continue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we log a warning?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that the bug is going to be fixed, let's log a warning so we don't silently ignore the problem if it reappears
The bug here: https://bugzilla.mozilla.org/show_bug.cgi?id=1572618
hasn't a signature field and consequently we get some nag mails every hour...