使用
flask-caching==1.7.2
flask==1.0.3
redis==3.2.1
celery==4.3.0我看到净闪烁错误
Cannot route message for exchange 'reply.celery.pidbox': Table empty or key no longer exists.
Probably the key ('_kombu.binding.reply.celery.pidbox') has been removed from the Redis database.我使用以下命令配置flask缓存
# redis
REDIS_URL = os.environ['REDIS_URL']
# flask-caching
CACHE_TYPE = 'redis'
CACHE_KEY_PREFIX = 'glue_flask_cache_'
CACHE_REDIS_URL = REDIS_URL有什么想法来处理这个错误,以及如何修复它们?
发布于 2019-10-03 00:06:35
已知的问题- https://github.com/celery/kombu/issues/1063 -应该在4.6.x发布的版本中得到修复,但它似乎没有...
https://stackoverflow.com/questions/57843094
复制相似问题