Remove delta island feature flag

Delta islands were implemented last released in:
https://gitlab.com/gitlab-org/gitaly/merge_requests/1110. It's been
enabled on production and works as expected.
This commit is contained in:
Zeger-Jan van de Weg 2019-06-03 08:12:13 +00:00 committed by Bob Van Landuyt
parent 33265ea368
commit b8372598e9
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,3 @@
merge_request: 28871
title: Improve clone performance by using delta islands
type: performance

View File

@ -33,7 +33,7 @@ module Gitlab
SERVER_FEATURE_CATFILE_CACHE = 'catfile-cache'.freeze
# Server feature flags should use '_' to separate words.
SERVER_FEATURE_FLAGS = [SERVER_FEATURE_CATFILE_CACHE, 'delta_islands'].freeze
SERVER_FEATURE_FLAGS = [SERVER_FEATURE_CATFILE_CACHE].freeze
MUTEX = Mutex.new