diff --git a/doc/source/admin/galaxy_options.rst b/doc/source/admin/galaxy_options.rst index 3d54bea5216..6d75b11385e 100644 --- a/doc/source/admin/galaxy_options.rst +++ b/doc/source/admin/galaxy_options.rst @@ -1941,18 +1941,6 @@ :Type: str -~~~~~~~~~~~~~~~~~~~~~~ -``use_legacy_history`` -~~~~~~~~~~~~~~~~~~~~~~ - -:Description: - Server-wide default selection to use the legacy history during the - transition period, after which this option will disappear. Users - will remain able to swap back and forth per their preference. -:Default: ``false`` -:Type: bool - - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``user_preferences_extra_conf_path`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/lib/galaxy/config/sample/galaxy.yml.sample b/lib/galaxy/config/sample/galaxy.yml.sample index fdb8f94fbc7..44a195c9f54 100644 --- a/lib/galaxy/config/sample/galaxy.yml.sample +++ b/lib/galaxy/config/sample/galaxy.yml.sample @@ -1244,11 +1244,6 @@ galaxy: # . #trs_servers_config_file: trs_servers_conf.yml - # Server-wide default selection to use the legacy history during the - # transition period, after which this option will disappear. Users - # will remain able to swap back and forth per their preference. - #use_legacy_history: false - # Location of the configuration file containing extra user # preferences. # The value of this option will be resolved with respect to diff --git a/lib/galaxy/config/schemas/config_schema.yml b/lib/galaxy/config/schemas/config_schema.yml index 3e6b1881c62..ccc0955444b 100644 --- a/lib/galaxy/config/schemas/config_schema.yml +++ b/lib/galaxy/config/schemas/config_schema.yml @@ -1396,15 +1396,6 @@ mapping: If this is null (the default), a simple configuration containing just Dockstore will be used. - use_legacy_history: - type: bool - default: false - required: false - desc: | - Server-wide default selection to use the legacy history during the - transition period, after which this option will disappear. Users will - remain able to swap back and forth per their preference. - user_preferences_extra_conf_path: type: str default: 'user_preferences_extra_conf.yml' diff --git a/lib/galaxy/managers/configuration.py b/lib/galaxy/managers/configuration.py index 279eb865199..dd87c229486 100644 --- a/lib/galaxy/managers/configuration.py +++ b/lib/galaxy/managers/configuration.py @@ -156,7 +156,6 @@ class ConfigSerializer(base.ModelSerializer): "enable_unique_workflow_defaults": _use_config, "enable_beta_markdown_export": _use_config, "enable_beacon_integration": _use_config, - "use_legacy_history": _use_config, "simplified_workflow_run_ui": _use_config, "simplified_workflow_run_ui_target_history": _use_config, "simplified_workflow_run_ui_job_cache": _use_config,