-
Notifications
You must be signed in to change notification settings - Fork 26
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Source:
jira-bugzilla-integration/jbi/runner.py
Lines 243 to 258 in 62738c1
| action_context = ActionContext( | |
| action=action, | |
| bug=bug, | |
| event=event, | |
| operation=Operation.IGNORE, | |
| jira=JiraContext(project=action.jira_project_key, issue=linked_issue_key), | |
| extra={k: str(v) for k, v in action.parameters.model_dump().items()}, | |
| ) | |
| if action_context.jira.issue is None: | |
| if event.target == "bug": | |
| action_context = action_context.update(operation=Operation.CREATE) | |
| else: | |
| # Check that issue exists (and is readable) | |
| jira_issue = jira.get_service().get_issue( |
In logs we are seeing Getting issue XXXX-124 with operation=ignore whereas at this point we don't haven't made a decision whether the event will be ignored.

Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request