pipe_ignore ignored as part of actor options #100
Comments
Thanks! This will be fixed in the next release. |
This is an interesting question. What if |
The former is how it works. Meta is inherited by subclasses. The issue here is different, though: the middleware does not (didn't, actually) look at the actor-level |
Oh cool, thanks for clearing that up, I read this as an inheritance issue. |
This is now in master and will be released soon! |
Issues
GitHub issues are for bugs. If you have questions, please ask them on the discussion board.
Checklist
What OS are you using?
Fedora 28
What version of Dramatiq are you using?
1.2.0
What did you do?
What did you expect would happen?
Setting
pipe_ignore = True
on BaseTask should pass this option to all childs ofBaseTask
automatically.What happened?
TypeError: perform() takes 4 positional arguments but 5 were given
In my case i should create message for every task with
message_with_options(pipe_ignore=True)
or implementing same asResults
middleware.The text was updated successfully, but these errors were encountered: