1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/e78c9aa7dc46/ Changeset: e78c9aa7dc46 User: natefoo Date: 2014-03-28 21:36:47 Summary: Disable manage_dependency_relationships by default to improve startup time. Affected #: 2 files diff -r 7815c237d0ddd998e300f6aec94b7a118e60420e -r e78c9aa7dc4642a3ddac6696ce5c56c58b936443 lib/galaxy/config.py --- a/lib/galaxy/config.py +++ b/lib/galaxy/config.py @@ -95,7 +95,7 @@ self.tool_data_table_config_path = resolve_path( kwargs.get( 'tool_data_table_config_path', 'tool_data_table_conf.xml' ), self.root ) self.shed_tool_data_table_config = resolve_path( kwargs.get( 'shed_tool_data_table_config', 'shed_tool_data_table_conf.xml' ), self.root ) self.enable_tool_shed_check = string_as_bool( kwargs.get( 'enable_tool_shed_check', False ) ) - self.manage_dependency_relationships = string_as_bool( kwargs.get( 'manage_dependency_relationships', True ) ) + self.manage_dependency_relationships = string_as_bool( kwargs.get( 'manage_dependency_relationships', False ) ) self.running_functional_tests = string_as_bool( kwargs.get( 'running_functional_tests', False ) ) self.hours_between_check = kwargs.get( 'hours_between_check', 12 ) try: diff -r 7815c237d0ddd998e300f6aec94b7a118e60420e -r e78c9aa7dc4642a3ddac6696ce5c56c58b936443 universe_wsgi.ini.sample --- a/universe_wsgi.ini.sample +++ b/universe_wsgi.ini.sample @@ -158,7 +158,7 @@ # Enable use of an in-memory registry with bi-directional relationships # between repositories (i.e., in addition to lists of dependencies for a # repository, keep an in-memory registry of dependent items for each repository. -#manage_dependency_relationships = True +#manage_dependency_relationships = False # XML config file that contains data table entries for the ToolDataTableManager. This file is manually # maintained by the Galaxy administrator. 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.