29 lines
601 B
Ruby
29 lines
601 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module Git
|
||
|
class RepositoryCleaner
|
||
|
include Gitlab::Git::WrapsGitalyErrors
|
||
|
|
||
|
attr_reader :repository
|
||
|
|
||
|
# 'repository' is a Gitlab::Git::Repository
|
||
|
def initialize(repository)
|
||
|
@repository = repository
|
||
|
end
|
||
|
|
||
|
def apply_bfg_object_map(io)
|
||
|
wrapped_gitaly_errors do
|
||
|
gitaly_cleanup_client.apply_bfg_object_map(io)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def gitaly_cleanup_client
|
||
|
@gitaly_cleanup_client ||= Gitlab::GitalyClient::CleanupService.new(repository)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|