1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/48f57ba4faed/ Changeset: 48f57ba4faed User: jmchilton Date: 2014-02-18 13:32:08 Summary: Fix for recent LWR message queue commit. Was always trying to bind to message queue. Affected #: 1 file diff -r 75b13d642f94b9ff6ec7c3c3713ad1177b243bd3 -r 48f57ba4faed584929ab3ef31aa59f663d84a411 lib/galaxy/jobs/runners/lwr_client/manager.py --- a/lib/galaxy/jobs/runners/lwr_client/manager.py +++ b/lib/galaxy/jobs/runners/lwr_client/manager.py @@ -37,7 +37,7 @@ def build_client_manager(**kwargs): if 'job_manager' in kwargs: return ClientManager(**kwargs) # TODO: Consider more separation here. - elif 'url' in kwargs: + elif kwargs.get('url', None): return MessageQueueClientManager(**kwargs) else: return ClientManager(**kwargs) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.