Skip to content

Commit 7d958f4

Browse files
Fix #983: use operation=handle in log context when fetching Jira issue (#986)
Fix #983: use operation=handle when fetching Jira issue Co-authored-by: Alex Cottner <[email protected]>
1 parent d1e5f63 commit 7d958f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jbi/runner.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ def execute_action(
256256
else:
257257
# Check that issue exists (and is readable)
258258
jira_issue = jira.get_service().get_issue(
259-
action_context, action_context.jira.issue
259+
action_context.update(operation=Operation.HANDLE),
260+
action_context.jira.issue,
260261
)
261262
if not jira_issue:
262263
raise IgnoreInvalidRequestError(

0 commit comments

Comments
 (0)