summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/lfs_changes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/git/lfs_changes.rb')
-rw-r--r--lib/gitlab/git/lfs_changes.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/git/lfs_changes.rb b/lib/gitlab/git/lfs_changes.rb
index a8d1ea08275..6c4191ce25b 100644
--- a/lib/gitlab/git/lfs_changes.rb
+++ b/lib/gitlab/git/lfs_changes.rb
@@ -3,13 +3,13 @@
module Gitlab
module Git
class LfsChanges
- def initialize(repository, newrev = nil)
+ def initialize(repository, newrevs = nil)
@repository = repository
- @newrev = newrev
+ @newrevs = newrevs
end
def new_pointers(object_limit: nil, not_in: nil, dynamic_timeout: nil)
- @repository.gitaly_blob_client.get_new_lfs_pointers(@newrev, object_limit, not_in, dynamic_timeout)
+ @repository.gitaly_blob_client.get_new_lfs_pointers(@newrevs, object_limit, not_in, dynamic_timeout)
end
def all_pointers