commit/galaxy-central: fubar: Reverse order of job manager and instance in warning
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/8335baa68815/ changeset: 8335baa68815 user: fubar date: 2012-05-25 07:48:49 summary: Reverse order of job manager and instance in warning affected #: 1 file diff -r 3f1150fee33c6d7270549e0760fd84b7c35fdb50 -r 8335baa6881520cabfd3eb41986d7df203dc3183 lib/galaxy/web/base/controller.py --- a/lib/galaxy/web/base/controller.py +++ b/lib/galaxy/web/base/controller.py @@ -2380,7 +2380,7 @@ msg = None status = None 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) ) + 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.server_name, self.app.config.job_manager) ) 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.
participants (1)
-
Bitbucket