Skip to content
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

remove redundant parameter from vulnerability retrieval in Jira workf… #576

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests_scripts/workflows/jira_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def assert_jira_tickets_was_created(self, begin_time, cluster_name, attempts=20,
found_sr = True

if not found_vuln:
response_vuln = self.backend.get_vulns_v2(body=vuln_body, expected_results=1, enrich_tickets=True)
response_vuln = self.backend.get_vulns_v2(body=vuln_body, enrich_tickets=True)
self.assert_vulnerability_jira_ticket_created(issues=issues, response=response_vuln, cves=["CVE-2023-27522"])
Logger.logger.info("Vulnerability jira ticket created")
found_vuln = True
Expand Down
Loading