Skip to content
This repository has been archived by the owner on Sep 17, 2021. It is now read-only.

Commit

Permalink
Merge pull request #418 from Netflix/rds_sg_index
Browse files Browse the repository at this point in the history
Fixing bug that would cause duplicate issues.
  • Loading branch information
Patrick Kelley authored Sep 21, 2016
2 parents 48f50ed + 71e9e57 commit cf8324b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security_monkey/auditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def save_issues(self):
new_issue.notes,
new_issue.score)

if (nk, new_issue.score) not in old_scored:
if nk not in old_scored:
app.logger.debug("Saving NEW issue {}".format(nk))
item.found_new_issue = True
item.confirmed_new_issues.append(new_issue)
Expand Down

0 comments on commit cf8324b

Please sign in to comment.