Code Monkey home page Code Monkey logo

Comments (7)

emoss08 avatar emoss08 commented on July 19, 2024

The cache backend is trying to set a key and get that key. If it's not able to do so, it will raise an exception.

        try:
            cache.set(self.cache_key, "itworks")
            if not cache.get(self.cache_key) == "itworks":
                raise ServiceUnavailable(f"Cache key {self.cache_key} does not match")

from django-health-check.

zN3utr4l avatar zN3utr4l commented on July 19, 2024

should print self.cache_key, but it just writes Cache key does not match. Could it be that it hasn't set any keys?

from django-health-check.

emoss08 avatar emoss08 commented on July 19, 2024

Yes, that is correct

from django-health-check.

zN3utr4l avatar zN3utr4l commented on July 19, 2024

ok but then the problem is not that he hasn't set any key to db, but that self.cache_key has no value

from django-health-check.

emoss08 avatar emoss08 commented on July 19, 2024

The value of the key is shown in the code above. "itworks" is the value being set to "self.cache_key".

from django-health-check.

zN3utr4l avatar zN3utr4l commented on July 19, 2024

ok but why the error is Cache key does not match? it could be Cache key djangohealthcheck_test does not match

self.cache_key could be djangohealthcheck_test.
maybe self.cache_key has no value, i didn't set HEALTHCHECK_CACHE_KEY in my django project

self.cache_key = getattr(
            settings, "HEALTHCHECK_CACHE_KEY", "djangohealthcheck_test"
        )

from django-health-check.

frankwiles avatar frankwiles commented on July 19, 2024

It's saying that the value of the cache key does not match what was supposed to have been set, it's not trying to list the key's name at all.

You don't need to set it, by default it uses the key "djangohealthcheck_test".

Based on the issues you're describing at the top of the post:

  1. You don't have Django's caching framework configured at all, if that is the case then you should not include the cache health check as it's always going to fail.
  2. You do have cache setup, but it's configuration is broken or the cache (Redis, memcache, etc.) is not running

from django-health-check.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.