Skip to content

Commit 9d234de

Browse files
add task_id
1 parent 54a4f5f commit 9d234de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/storage/tests/unit/test_async_jobs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ async def _process_action(action: str, payload: Any) -> Any:
9494
return None
9595

9696

97-
def sync_job(task: Task, action: Action, payload: Any) -> Any:
97+
def sync_job(task: Task, task_id: TaskID, action: Action, payload: Any) -> Any:
9898
_ = task
99+
_ = task_id
99100
return asyncio.run(_process_action(action, payload))
100101

101102

0 commit comments

Comments
 (0)