1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/9f5491972e72/ Changeset: 9f5491972e72 User: dannon Date: 2014-10-15 14:21:13+00:00 Summary: Move handler startup to immediately following full creation and association of the JobManager. Affected #: 2 files diff -r d43121eccec2fa0aa28e4d8ff60204742f6b23af -r 9f5491972e72ee38e011d49e891303e47bca29d9 lib/galaxy/app.py --- a/lib/galaxy/app.py +++ b/lib/galaxy/app.py @@ -134,6 +134,7 @@ # Start the job manager from galaxy.jobs import manager self.job_manager = manager.JobManager( self ) + self.job_manager.start() # FIXME: These are exposed directly for backward compatibility self.job_queue = self.job_manager.job_queue self.job_stop_queue = self.job_manager.job_stop_queue diff -r d43121eccec2fa0aa28e4d8ff60204742f6b23af -r 9f5491972e72ee38e011d49e891303e47bca29d9 lib/galaxy/jobs/manager.py --- a/lib/galaxy/jobs/manager.py +++ b/lib/galaxy/jobs/manager.py @@ -27,6 +27,8 @@ self.job_handler = NoopHandler() self.job_queue = self.job_stop_queue = NoopQueue() self.job_lock = False + + def start( self ): self.job_handler.start() def shutdown( self ): 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.