We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried with many task dedupe libs including yours and this doesn't work:
(task1.si(42) | task2.s(1)).delay() (task1.si(42) | task2.s(2)).delay()
I want task1(42) to be deduped and then both task2(1) and task2(2) be ran after it finished. Is this possible?
task1(42)
task2(1)
task2(2)
The text was updated successfully, but these errors were encountered:
Hi @Suor It is not currently possible. There was a PR that attempted to introduce this but never made it into master.
Sorry, something went wrong.
No branches or pull requests
I tried with many task dedupe libs including yours and this doesn't work:
I want
task1(42)
to be deduped and then bothtask2(1)
andtask2(2)
be ran after it finished. Is this possible?The text was updated successfully, but these errors were encountered: