Skip to content

Commit

Permalink
tools: neuvector_compliance: support 'manual' severity of compliance …
Browse files Browse the repository at this point in the history
…findings
  • Loading branch information
pna-nca committed Jun 11, 2024
1 parent 4b0b484 commit 545df9a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dojo/tools/neuvector_compliance/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ def convert_severity(severity):
return "Info"
elif severity.lower() == "error":
return "Info"
elif severity.lower() == "manual":
return "Info"
else:
return severity.title()

Expand Down

0 comments on commit 545df9a

Please sign in to comment.