Remove kombu-sqlalchemy and use database string in modern kombu-proper format

Previously we were using kombu-sqlalchemy the library for sqlalchemy
support.  Newer kombu has support for this internally, so we're using
that.  Requires changing a celery setting and also removing
kombu-sqlalchemy from your path.

I hope the process of removing kombu-sqlalchemy from one's path
doesn't confuse too many people...!
This commit is contained in:
Christopher Allan Webber 2012-04-21 20:29:02 -05:00
parent c2c66ea1c1
commit ec05785089
2 changed files with 1 additions and 2 deletions

View File

@ -117,7 +117,7 @@ CELERY_RESULT_DBURI = string(default="sqlite:///%(here)s/celery.db")
# default kombu stuff
BROKER_TRANSPORT = string(default="sqlalchemy")
BROKER_HOST = string(default="sqlite:///%(here)s/kombu.db")
BROKER_HOST = string(default="sqlalchemy+sqlite:///%(here)s/kombu.db")
# known booleans
CELERY_RESULT_PERSISTENT = boolean()

View File

@ -64,7 +64,6 @@ setup(
'Markdown',
'sqlalchemy',
'sqlalchemy-migrate',
'kombu-sqlalchemy',
## For now we're expecting that users will install this from
## their package managers.
# 'lxml',