Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
6c4f6d37
Commit
6c4f6d37
authored
Dec 14, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include project in BatchLoader key to prevent returning blobs for the wrong project
parent
1fbda39c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
app/models/blob.rb
app/models/blob.rb
+9
-3
No files found.
app/models/blob.rb
View file @
6c4f6d37
...
...
@@ -77,9 +77,15 @@ class Blob < SimpleDelegator
end
def
self
.
lazy
(
project
,
commit_id
,
path
)
BatchLoader
.
for
(
commit_id:
commit_id
,
path:
path
).
batch
do
|
items
,
loader
|
project
.
repository
.
blobs_at
(
items
.
map
(
&
:values
)).
each
do
|
blob
|
loader
.
call
({
commit_id:
blob
.
commit_id
,
path:
blob
.
path
},
blob
)
if
blob
BatchLoader
.
for
({
project:
project
,
commit_id:
commit_id
,
path:
path
}).
batch
do
|
items
,
loader
|
items_by_project
=
items
.
group_by
{
|
i
|
i
[
:project
]
}
items_by_project
.
each
do
|
project
,
items
|
items
=
items
.
map
{
|
i
|
i
.
values_at
(
:commit_id
,
:path
)
}
project
.
repository
.
blobs_at
(
items
).
each
do
|
blob
|
loader
.
call
({
project:
blob
.
project
,
commit_id:
blob
.
commit_id
,
path:
blob
.
path
},
blob
)
if
blob
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment