1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/3f1150fee33c/ changeset: 3f1150fee33c user: fubar date: 2012-05-25 07:40:44 summary: Fix for bogus double negative compare - allows job management from admin screen when only one job manager running affected #: 1 file diff -r 3fa05d052e820d21f1a6e5ae206d90edcc1a8782 -r 3f1150fee33c6d7270549e0760fd84b7c35fdb50 lib/galaxy/web/base/controller.py --- a/lib/galaxy/web/base/controller.py +++ b/lib/galaxy/web/base/controller.py @@ -2379,8 +2379,8 @@ deleted = [] msg = None status = None - if not self.app.config.job_manager != self.app.config.server_name: - return trans.show_error_message( 'This Galaxy instance is not the job manager. If using multiple servers, please directly access the job manager instance to manage jobs.' ) + if self.app.config.job_manager != self.app.config.server_name: + return trans.show_error_message( 'This Galaxy instance (%s) is not the job manager (%s). If using multiple servers, please directly access the job manager instance to manage jobs.' % ( self.app.config.job_manager,self.app.config.server_name) ) job_ids = util.listify( stop ) if job_ids and stop_msg in [ None, '' ]: msg = 'Please enter an error message to display to the user describing why the job was terminated' 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.