Skip to content

Commit

Permalink
Added healtcheck configuration and incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
OdinsPlasmaRifle committed Jul 1, 2019
1 parent a9e9abe commit ff173b3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,16 @@ MIDDLEWARE = [
]
```

4. Configure the readiness checks:

```
HEALTHCHECK = {
'READINESS_CHECKS': ('databases', 'caches', 'queues',)
}
```

## TODO

1. Add support for celery/rabbitmq, cache checks etc.
2. Update responses to JSON
3. Allow customization or readiness and healthz URLs.
1. Update responses to JSON
2. Allow customization or readiness and healthz URLs.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import find_packages, setup


VERSION = '0.0.3'
VERSION = '0.0.4'

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
Expand Down

0 comments on commit ff173b3

Please sign in to comment.