Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-12-17 16:25:09 +0300
committerGitLab Release Tools Bot <robert+release-tools@gitlab.com>2018-12-18 22:40:03 +0300
commit1068223eaf9d3fe0fb451bcbfec09bba59f4aa55 (patch)
treed2bbdf68b036b638f6541f53b31482206195c132 /lib
parente27a1d9151c414a1771d495a1fd6df6e01ba8f31 (diff)
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 (cherry picked from commit 0ab50681da1f0c8d1ee1569d61c2ac509a9e3581) 0b74b863 Fix repository cleanup with object storage on e8a675d3 Remove the project_cleanup feature flag
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/gitaly_client/cleanup_service.rb1
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