From 4a64ac1c8b81a8944e290071343c7588f3ad5701 Mon Sep 17 00:00:00 2001 From: kitos Date: Wed, 27 May 2026 10:18:16 +0200 Subject: [PATCH] =?UTF-8?q?fix(jira):=20remove=20priority=20field=20from?= =?UTF-8?q?=20issue=20creation=20=E2=80=94=20OFS=20project=20has=20non-sta?= =?UTF-8?q?ndard=20priorities?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The OFS Jira project does not have the default Jira priority scheme (Highest/High/Medium/Low/Lowest), causing a 'priority selected is invalid' error on every ticket creation. Removing the priority field lets Jira use the project default. Co-Authored-By: Claude Sonnet 4.6 --- backend/app/services/jira_service.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/app/services/jira_service.py b/backend/app/services/jira_service.py index cbd925b..3cd7830 100644 --- a/backend/app/services/jira_service.py +++ b/backend/app/services/jira_service.py @@ -472,7 +472,6 @@ def auto_create_test_issue( "summary": f"[Aegis] {mitre_id} — {test.name}", "description": _build_test_description(test, technique), "issuetype": {"name": settings.JIRA_ISSUE_TYPE_TEST}, - "priority": {"name": _SEVERITY_TO_PRIORITY.get(severity, "Medium")}, "labels": ["aegis", "security-test", mitre_id.replace(".", "-")], }