-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
TaskiqDeprecationWarning: use with_result_backend
#71
Comments
I guess the github docs for this repo hasn't been updated yet. There is a from this doc: https://taskiq-python.github.io/guide/getting-started.html#distributed-run from taskiq_aio_pika import AioPikaBroker
from taskiq_redis import RedisAsyncResultBackend
broker = AioPikaBroker(
"amqp://guest:guest@localhost:5672",
).with_result_backend(RedisAsyncResultBackend("redis://localhost")) |
@CurstinJR, yes, you are correct. Will update soon. |
Works, thank you ! |
@s3rius hello, can you please clarify if it is necessary to call broker.startup() with ListQueueBroker in taskiq_redis? |
It's kinda not, but I highly advise you doing so. |
Using taskiq 0.11.7 and taskiq-redis 1.0.2, i have this deprecation warning showing up:
The code that triggered it:
The text was updated successfully, but these errors were encountered: