diff options
author | Douwe Maan <douwe@gitlab.com> | 2018-12-17 13:25:09 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2018-12-17 13:25:09 +0000 |
commit | 0ab50681da1f0c8d1ee1569d61c2ac509a9e3581 (patch) | |
tree | 38d53ed565cff3ce0c5df40592be11fe2911a16f /lib | |
parent | e17d303e212a0e19f7bd2e5d7675f133ea004060 (diff) | |
parent | e8a675d35f02c6bca9d0e3c8cc116ccd240fa4f6 (diff) | |
download | gitlab-ce-0ab50681da1f0c8d1ee1569d61c2ac509a9e3581.tar.gz |
Merge branch '55230-remove-project-cleanup-feature-flag' into 'master'
Remove the project_cleanup feature flag
Closes #55230
See merge request gitlab-org/gitlab-ce!23814
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/gitaly_client/cleanup_service.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab/gitaly_client/cleanup_service.rb b/lib/gitlab/gitaly_client/cleanup_service.rb index 8e412a9b3ef..3e8d6a773ca 100644 --- a/lib/gitlab/gitaly_client/cleanup_service.rb +++ b/lib/gitlab/gitaly_client/cleanup_service.rb @@ -20,6 +20,7 @@ module Gitlab while data = io.read(RepositoryService::MAX_MSG_SIZE) y.yield Gitaly::ApplyBfgObjectMapRequest.new(object_map: data) + break if io&.eof? end end |