diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-04-22 10:02:04 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-04-22 10:02:04 -0500 |
commit | 5d88f39875dfc943b4e11974b3f79f93b05800d3 (patch) | |
tree | ec36b644679c1720e46f55110dcc824030624c20 | |
parent | ec05785089144e6bf7e2dd9056774342cec1415b (diff) | |
download | mediagoblin-5d88f39875dfc943b4e11974b3f79f93b05800d3.tar.lz mediagoblin-5d88f39875dfc943b4e11974b3f79f93b05800d3.tar.xz mediagoblin-5d88f39875dfc943b4e11974b3f79f93b05800d3.zip |
Switching BROKER_HOST to sqlite:// instead of sqlalchemy+sqlite://
Okay, so if you run git master of kombu, this works. And if you run
the older kombu + kombu-sqlalchemy, this also worked. In the last
release of kombu (2.1.5) there's a bug, and sqlalchemy+sqlite://
worked for processes consuming tasks but not ones publishing tasks.
Aye aye aye.
I guess we might have to move our setup.py back to the old kombu +
kombu-sqlalchemy setup until they put out a new kombu release? :(
-rw-r--r-- | mediagoblin/config_spec.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/config_spec.ini b/mediagoblin/config_spec.ini index f8311dc5..01853e48 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="sqlalchemy+sqlite:///%(here)s/kombu.db") +BROKER_HOST = string(default="sqlite:///%(here)s/kombu.db") # known booleans CELERY_RESULT_PERSISTENT = boolean() |