You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The InMemoryBroker bundled in taskiq does not call startup() on its result_backend.
The default result_backend for InMemoryBroker (InmemoryResultBackend) does not implement startup() so if you do not override the result_backend with with_result_backend(), this bug has no effect.
Using any other result backend (that implements startup()) with the InMemoryBroker will have unexpected results since startup() will never get called on the result backend.
It's a one line fix. Great first PR for any beginner. I will push a fix later this week if no one beats me to it.
The text was updated successfully, but these errors were encountered:
The
InMemoryBroker
bundled in taskiq does not callstartup()
on itsresult_backend
.The default
result_backend
forInMemoryBroker
(InmemoryResultBackend
) does not implementstartup()
so if you do not override theresult_backend
withwith_result_backend()
, this bug has no effect.Using any other result backend (that implements
startup()
) with theInMemoryBroker
will have unexpected results sincestartup()
will never get called on the result backend.It's a one line fix. Great first PR for any beginner. I will push a fix later this week if no one beats me to it.
The text was updated successfully, but these errors were encountered: