Jérôme Diaz
Jérôme Diaz
take a look at https://github.com/crazycodeboy/react-native-splash-screen/issues/442#issuecomment-553391344, the SplashScreen.hide() in App.js componentDidMount did the trick
the code on GitHub doesn't use it anymore, but the npm module hasn't been updated yet
As a work-around for now, what I did was declare the task with the bind option and explicitly ignore redelivered task ``` from celery.exceptions import Ignore @app.task(bind=True) def a_task(self, ...)...
Update : I was experiencing the issue using celery worker in solo mode poetry run celery -A worker worker --pool=solo --loglevel=INFO it seems switching to threads mode (with a 1...
@RamachandranSitaraman-IB can you tell us how is launched your celery worker?