fzhan commented on issue #29853:
URL: https://github.com/apache/superset/issues/29853#issuecomment-2918275399
Hi @rusackas, I do have good news, I found exactly what was the issue:
I used the k8s package where config was written in configOverrides section:
originally, I had
RESULTS_BACKEND = RedisCache(host="{env('REDIS_HOST')}",
port={env('REDIS_PORT')}, key_prefix='superset_results',
password="{env('REDIS_PASS')}")
Then I changed it to
RESULTS_BACKEND = RedisCache(host=f"{env('REDIS_HOST')}",
port=int(env('REDIS_PORT')), key_prefix='superset_results',
password=f"{env('REDIS_PASSWORD')}")
Apparent the port number was the issue, format it to int solve the problem.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]