Skip to content

Commit

Permalink
fix(py-sdk): handle Taskiq dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed Oct 3, 2024
1 parent f3b133b commit 4c9ad42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/py/apepay/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ def decorator(f):

@app.on_(container)
@wraps(f)
def inner(log):
return f(Stream(manager=self, id=log.stream_id))
def inner(log, **dependencies):
return f(Stream(manager=self, id=log.stream_id), **dependencies)

return inner

Expand Down

0 comments on commit 4c9ad42

Please sign in to comment.