[hg] galaxy 1623: Whoops, forgot to fix changed config param in ...
details: http://www.bx.psu.edu/hg/galaxy/rev/41a4d178466d changeset: 1623:41a4d178466d user: Nate Coraor <nate@bx.psu.edu> date: Tue Nov 11 14:54:24 2008 -0500 description: Whoops, forgot to fix changed config param in the local runner. 1 file(s) affected in this change: lib/galaxy/jobs/runners/local.py diffs (12 lines): diff -r fb44755b4c56 -r 41a4d178466d lib/galaxy/jobs/runners/local.py --- a/lib/galaxy/jobs/runners/local.py Tue Nov 11 14:51:13 2008 -0500 +++ b/lib/galaxy/jobs/runners/local.py Tue Nov 11 14:54:24 2008 -0500 @@ -20,7 +20,7 @@ self.app = app self.queue = Queue() self.threads = [] - nworkers = app.config.job_queue_workers + nworkers = app.config.local_job_queue_workers log.info( "starting workers" ) for i in range( nworkers ): worker = threading.Thread( target=self.run_next )
participants (1)
-
Nate Coraor