diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-04-21 20:29:02 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-04-21 20:29:02 -0500 |
commit | ec05785089144e6bf7e2dd9056774342cec1415b (patch) | |
tree | b2af85d3b023d848fcb9af94d4290453d33c66cc | |
parent | c2c66ea1c1fa42032d2e7b114fd5fa8385f4c0ee (diff) | |
download | mediagoblin-ec05785089144e6bf7e2dd9056774342cec1415b.tar.lz mediagoblin-ec05785089144e6bf7e2dd9056774342cec1415b.tar.xz mediagoblin-ec05785089144e6bf7e2dd9056774342cec1415b.zip |
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...!
-rw-r--r-- | mediagoblin/config_spec.ini | 2 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/mediagoblin/config_spec.ini b/mediagoblin/config_spec.ini index 01853e48..f8311dc5 100644 --- a/mediagoblin/config_spec.ini +++ b/mediagoblin/config_spec.ini @@ -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() @@ -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', |