summaryrefslogtreecommitdiff
path: root/lib/gitlab/git
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-03-25 14:29:51 +0000
committerNick Thomas <nick@gitlab.com>2019-05-06 11:35:03 +0100
commit8973f32d428ab8961986700700a2bad51fe7d4af (patch)
treec527841677c6f2a4b2823f0539331d511ad60730 /lib/gitlab/git
parentd7eb886b9fd32ad2d0ab7bca9128dbb40e80c0da (diff)
downloadgitlab-ce-8973f32d428ab8961986700700a2bad51fe7d4af.tar.gz
Remove cleaned up OIDs from database and cache
Diffstat (limited to 'lib/gitlab/git')
-rw-r--r--lib/gitlab/git/repository_cleaner.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/git/repository_cleaner.rb b/lib/gitlab/git/repository_cleaner.rb
index 2d1d8435cf3..9dd0ddfb44b 100644
--- a/lib/gitlab/git/repository_cleaner.rb
+++ b/lib/gitlab/git/repository_cleaner.rb
@@ -12,9 +12,9 @@ module Gitlab
@repository = repository
end
- def apply_bfg_object_map(io)
+ def apply_bfg_object_map_stream(io, &blk)
wrapped_gitaly_errors do
- gitaly_cleanup_client.apply_bfg_object_map(io)
+ gitaly_cleanup_client.apply_bfg_object_map_stream(io, &blk)
end
end