diff --git a/ee/config/feature_flags/development/geo_proxy_fetch_direct_to_primary_with_options.yml b/ee/config/feature_flags/development/geo_proxy_fetch_direct_to_primary_with_options.yml deleted file mode 100644 index 1e0cc9a65442b4b1635fe911b99103844d54ae4b..0000000000000000000000000000000000000000 --- a/ee/config/feature_flags/development/geo_proxy_fetch_direct_to_primary_with_options.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -name: geo_proxy_fetch_direct_to_primary_with_options -introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/138777 -rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/434062 -milestone: '16.7' -type: development -group: group::geo -default_enabled: false diff --git a/ee/lib/ee/gitlab/geo_git_access.rb b/ee/lib/ee/gitlab/geo_git_access.rb index 0c856c3a8914ec5c0ab49cdf0295a4545844425f..3f19a9928dd2579f4f78f8d385853965324022c6 100644 --- a/ee/lib/ee/gitlab/geo_git_access.rb +++ b/ee/lib/ee/gitlab/geo_git_access.rb @@ -16,9 +16,6 @@ def geo_custom_ssh_action 'primary_repo' => primary_http_repo_internal_url, 'geo_proxy_direct_to_primary' => true, 'geo_proxy_fetch_direct_to_primary' => true, - 'geo_proxy_fetch_direct_to_primary_with_options' => ::Feature.enabled?( - :geo_proxy_fetch_direct_to_primary_with_options - ), 'geo_proxy_fetch_ssh_direct_to_primary' => ::Feature.enabled?( :geo_proxy_fetch_ssh_to_primary ), diff --git a/ee/spec/lib/ee/gitlab/geo_git_access_spec.rb b/ee/spec/lib/ee/gitlab/geo_git_access_spec.rb index e912036ca878d42c8588f65b4f7d5c32aef48bb2..0d6120145df825ce52b3de10c7f666d30e37844f 100644 --- a/ee/spec/lib/ee/gitlab/geo_git_access_spec.rb +++ b/ee/spec/lib/ee/gitlab/geo_git_access_spec.rb @@ -195,7 +195,6 @@ def initialize(actor, container, protocol, cmd, authentication_abilities: []) "primary_repo" => "http://primary.gitlab.com/#{project_no_repo.full_path}.git", "geo_proxy_direct_to_primary" => true, "geo_proxy_fetch_direct_to_primary" => true, - "geo_proxy_fetch_direct_to_primary_with_options" => true, "geo_proxy_fetch_ssh_direct_to_primary" => true, "geo_proxy_push_ssh_direct_to_primary" => true, "request_headers" => include('Authorization') @@ -292,7 +291,6 @@ def initialize(actor, container, protocol, cmd, authentication_abilities: []) "primary_repo" => "http://primary.gitlab.com/#{project.full_path}.git", "geo_proxy_direct_to_primary" => true, "geo_proxy_fetch_direct_to_primary" => true, - "geo_proxy_fetch_direct_to_primary_with_options" => true, "geo_proxy_fetch_ssh_direct_to_primary" => true, "geo_proxy_push_ssh_direct_to_primary" => true, "request_headers" => include('Authorization') @@ -339,7 +337,6 @@ def initialize(actor, container, protocol, cmd, authentication_abilities: []) "primary_repo" => "http://primary.gitlab.com/#{project.full_path}.git", "geo_proxy_direct_to_primary" => true, "geo_proxy_fetch_direct_to_primary" => true, - "geo_proxy_fetch_direct_to_primary_with_options" => true, "geo_proxy_fetch_ssh_direct_to_primary" => true, "geo_proxy_push_ssh_direct_to_primary" => true, "request_headers" => include('Authorization')