mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Fix failing integration tests for workflow handlers.
This commit is contained in:
@@ -551,8 +551,9 @@ class Configuration(object):
|
||||
# Allow explicit override of server name in config params
|
||||
if "server_name" in kwargs:
|
||||
self.server_name = kwargs.get("server_name")
|
||||
# The application stack code may manipulate the server name
|
||||
self.base_server_name = self.server_name
|
||||
# The application stack code may manipulate the server name. It also needs to be accessible via the get() method
|
||||
# for galaxy.util.facts()
|
||||
self.config_dict['base_server_name'] = self.base_server_name = self.server_name
|
||||
# Store all configured server names for the message queue routing
|
||||
self.server_names = []
|
||||
for section in global_conf_parser.sections():
|
||||
|
||||
Reference in New Issue
Block a user