diff options
author | Robert Speicher <robert@gitlab.com> | 2017-11-30 17:21:58 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2017-11-30 17:21:58 +0000 |
commit | fee2a54389c223348fa1b42655edc8f7c6f5aa01 (patch) | |
tree | 5d35307208a33ad30e9f821813fe013a01857993 | |
parent | 5f129bdecd39955cc99b9609e292b0ced731e698 (diff) | |
parent | 60056d67a08ee0afd211e64a2a364371f719cd07 (diff) | |
download | gitlab-ce-fee2a54389c223348fa1b42655edc8f7c6f5aa01.tar.gz |
Merge branch 'zj-blobs-bulk-gitaly' into 'master'
Add link to Gitaly conversion
[ci skip]
See merge request gitlab-org/gitlab-ce!15666
-rw-r--r-- | lib/gitlab/git/blob.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab/git/blob.rb b/lib/gitlab/git/blob.rb index ddd52136bc4..228d97a87ab 100644 --- a/lib/gitlab/git/blob.rb +++ b/lib/gitlab/git/blob.rb @@ -49,6 +49,7 @@ module Gitlab # Keep in mind that this method may allocate a lot of memory. It is up # to the caller to limit the number of blobs and blob_size_limit. # + # Gitaly migration issue: https://gitlab.com/gitlab-org/gitaly/issues/798 def batch(repository, blob_references, blob_size_limit: nil) blob_size_limit ||= MAX_DATA_DISPLAY_SIZE blob_references.map do |sha, path| |