Fix failing integration tests for workflow handlers.

This commit is contained in:
Nate Coraor
2018-02-02 15:40:22 -05:00
parent b0162ba543
commit dac1ba5812
+3 -2
View File
@@ -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():