-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KeyError: 'status'
when running redisboard within Kubernetes Django
#51
Comments
Do you have a traceback? What is the redis server version? |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, our integration with django-redisboard went well in DEV. But as we pushed this to our non-DEV environments, we are observing weird
KeyError: 'status'
issues. Here is what I tried:Added a redis server with url as
redis://cloud-redis-gcp-memstore
.cloud-redis-gcp-memstore
is the same entry that we use for Django'sREDIS_HOST
variable. But this failed. Looks likeredisboard
wasn't able to reach this host, while Django could.Next, we added FQDN for
cloud-redis-gcp-memstore.namespace.svc.cluster.local
and it started working, but this time running intoKeyError: 'status'
. We also tried changing url to10.244.20.116
, internal IP over which redis is accessible, but we continue to getKeyError: 'status'
.It specifically errors out during
I am not sure if this issue is specific to Kubernetes environment in any ways. This worked out of box in DEV environment where redis url was simply
redis://127.0.0.1
The text was updated successfully, but these errors were encountered: