fzhan commented on issue #29611: URL: https://github.com/apache/superset/issues/29611#issuecomment-2918280219
@deviardn I had the similar issue where my redis result backend set to below: ```RESULTS_BACKEND = RedisCache(host="{env('REDIS_HOST')}", port={env('REDIS_PORT')}, key_prefix='superset_results', password="{env('REDIS_PASS')}")``` After I updated it to ```RESULTS_BACKEND = RedisCache(host=f"{env('REDIS_HOST')}", port=int(env('REDIS_PORT')), key_prefix='superset_results', password=f"{env('REDIS_PASSWORD')}")``` Problem resolved. Perhaps check your config for similar implementation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org