This commit is contained in:
Fabio C. Barrioneuvo da Luz 2015-12-11 08:53:43 -03:00
parent aa0a8cc9b9
commit fc37d65661
2 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,10 @@
All enhancements and patches to cookiecutter-django will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [2015-12-11]
### Changed
- Fix issue #436 - cookiecutter variable name was renamed from `celery_support` to `use_celery` in `tests/engine.py` (@luzfcb @otakucode)
## [2015-12-06]
### Changed
- Reorganization of contributors (@burhan)

View File

@ -62,7 +62,7 @@ class ExecutionEngine(hitchtest.ExecutionEngine):
redis_package=redis_package,
port=16379,
)
{% if cookiecutter.celery_support == "y" %}
{% if cookiecutter.use_celery == "y" %}
self.services['Celery'] = hitchpython.CeleryService(
python=python_package.python,
app="{{cookiecutter.repo_name}}.taskapp", loglevel="INFO",