# HG changeset patch # User Mads Kiilerich # Date 2015-03-25 20:38:09 # Node ID 75f4d8e84b81b414b6be52ded189a79eab19fe4c # Parent 16e11fc0ac6122171b58aeb93a85fd177f9084c5 Make celeryd.log.level default values uppercase - lowercase might not be recognized and cause failure diff --git a/development.ini b/development.ini --- a/development.ini +++ b/development.ini @@ -293,7 +293,7 @@ celery.result.serialier = json celeryd.concurrency = 2 #celeryd.log.file = celeryd.log -celeryd.log.level = debug +celeryd.log.level = DEBUG celeryd.max.tasks.per.child = 1 ## tasks will never be sent to the queue, but executed locally instead. diff --git a/kallithea/bin/template.ini.mako b/kallithea/bin/template.ini.mako --- a/kallithea/bin/template.ini.mako +++ b/kallithea/bin/template.ini.mako @@ -290,7 +290,7 @@ celery.result.serialier = json celeryd.concurrency = 2 #celeryd.log.file = celeryd.log -celeryd.log.level = debug +celeryd.log.level = DEBUG celeryd.max.tasks.per.child = 1 <%text>## tasks will never be sent to the queue, but executed locally instead. diff --git a/kallithea/config/deployment.ini_tmpl b/kallithea/config/deployment.ini_tmpl --- a/kallithea/config/deployment.ini_tmpl +++ b/kallithea/config/deployment.ini_tmpl @@ -287,7 +287,7 @@ celery.result.serialier = json celeryd.concurrency = 2 #celeryd.log.file = celeryd.log -celeryd.log.level = debug +celeryd.log.level = DEBUG celeryd.max.tasks.per.child = 1 ## tasks will never be sent to the queue, but executed locally instead. diff --git a/production.ini b/production.ini --- a/production.ini +++ b/production.ini @@ -291,7 +291,7 @@ celery.result.serialier = json celeryd.concurrency = 2 #celeryd.log.file = celeryd.log -celeryd.log.level = debug +celeryd.log.level = DEBUG celeryd.max.tasks.per.child = 1 ## tasks will never be sent to the queue, but executed locally instead. diff --git a/test.ini b/test.ini --- a/test.ini +++ b/test.ini @@ -293,7 +293,7 @@ celery.result.serialier = json celeryd.concurrency = 2 #celeryd.log.file = celeryd.log -celeryd.log.level = debug +celeryd.log.level = DEBUG celeryd.max.tasks.per.child = 1 ## tasks will never be sent to the queue, but executed locally instead.