Changeset - 34a59bfcebb1
[Not reviewed]
default
0 2 0
Mads Kiilerich - 6 years ago 2020-02-11 03:54:43
mads@kiilerich.com
ini: drop deprecated CELERY_RESULT_DBURI

https://docs.celeryproject.org/en/3.1/configuration.html#celery-result-dburi says:

This setting is no longer used as it’s now possible to specify the database
URL directly in the CELERY_RESULT_BACKEND setting.
2 files changed with 2 insertions and 4 deletions:
0 comments (0 inline, 0 general)
development.ini
Show inline comments
 
@@ -254,14 +254,13 @@ use_celery = false
 

	
 
## Example: connect to the virtual host 'rabbitmqhost' on localhost as rabbitmq:
 
broker.url = amqp://rabbitmq:qewqew@localhost:5672/rabbitmqhost
 

	
 
celery.imports = kallithea.lib.celerylib.tasks
 
celery.accept.content = pickle
 
celery.result.backend = amqp
 
celery.result.dburi = amqp://
 
celery.result.backend = amqp://
 
celery.result.serializer = json
 

	
 
#celery.send.task.error.emails = true
 
#celery.amqp.task.result.expires = 18000
 

	
 
celeryd.concurrency = 2
kallithea/lib/paster_commands/template.ini.mako
Show inline comments
 
@@ -360,14 +360,13 @@ use_celery = false
 

	
 
<%text>## Example: connect to the virtual host 'rabbitmqhost' on localhost as rabbitmq:</%text>
 
broker.url = amqp://rabbitmq:qewqew@localhost:5672/rabbitmqhost
 

	
 
celery.imports = kallithea.lib.celerylib.tasks
 
celery.accept.content = pickle
 
celery.result.backend = amqp
 
celery.result.dburi = amqp://
 
celery.result.backend = amqp://
 
celery.result.serializer = json
 

	
 
#celery.send.task.error.emails = true
 
#celery.amqp.task.result.expires = 18000
 

	
 
celeryd.concurrency = 2
0 comments (0 inline, 0 general)