Skip to content

Commit

Permalink
fixes callback arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
vedarthk committed Jun 20, 2017
1 parent 5aef00f commit 5ac1e57
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions async_runner/async_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,5 +289,6 @@ def _action_callback(action, task_id, task_fn_module, task_fn_name, queue, count
if module_string:
func = _import(module_string)
return func(
task_id=task_id, task_fn_module=task_fn_module,
task_fn_name=task_fn_name, queue=queue, countdown=countdown)
action=action.value, task_id=task_id, task_fn_module=task_fn_module,
task_fn_name=task_fn_name, queue=queue, countdown=countdown,
args=args, kwargs=kwargs)

0 comments on commit 5ac1e57

Please sign in to comment.