Moving rev-list lfs options to Lfschanges

This commit is contained in:
Francisco Javier López 2018-06-06 21:07:31 +02:00
parent fddcfae6d8
commit 86d39016a2
No known key found for this signature in database
GPG key ID: A12DF17E9D5DDF3C
3 changed files with 6 additions and 4 deletions

View file

@ -39,7 +39,9 @@ module Gitlab
end
def git_all_pointers
rev_list.all_objects(require_path: true) do |object_ids|
params = { options: ["--filter=blob:limit=#{Gitlab::Git::Blob::LFS_POINTER_MAX_SIZE}"], require_path: true }
rev_list.all_objects(params) do |object_ids|
Gitlab::Git::Blob.batch_lfs_pointers(@repository, object_ids)
end
end

View file

@ -37,9 +37,9 @@ module Gitlab
get_objects(opts, &lazy_block)
end
def all_objects(require_path: nil, &lazy_block)
def all_objects(options: [], require_path: nil, &lazy_block)
get_objects(including: :all,
options: ["--filter=blob:limit=#{Gitlab::Git::Blob::LFS_POINTER_MAX_SIZE}"],
options: options,
require_path: require_path,
&lazy_block)
end

View file

@ -88,7 +88,7 @@ describe Gitlab::Git::RevList do
context '#all_objects' do
it 'fetches list of all pushed objects using rev-list' do
stub_popen_rev_list('--all', '--objects', '--filter=blob:limit=200', output: "sha1\nsha2")
stub_popen_rev_list('--all', '--objects', output: "sha1\nsha2")
expect { |b| rev_list.all_objects(&b) }.to yield_with_args(%w[sha1 sha2])
end