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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
1db3e278
Commit
1db3e278
authored
Jan 28, 2016
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Elasticsearch: fix partial blob indexing on push
parent
28301fe1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
CHANGELOG-EE
CHANGELOG-EE
+3
-0
app/services/git_push_service.rb
app/services/git_push_service.rb
+1
-1
No files found.
CHANGELOG-EE
View file @
1db3e278
...
...
@@ -4,6 +4,9 @@ v 8.5.0 (unreleased)
- Show warning when mirror repository default branch could not be updated because it has diverged from upstream.
- More reliable wiki indexer
v 8.4.3
- Elasticsearch: fix partial blob indexing on push
v 8.4.2
- Elasticsearch indexer performance improvements
- Don't redirect away from Mirror Repository settings when repo is empty
...
...
app/services/git_push_service.rb
View file @
1db3e278
...
...
@@ -67,7 +67,7 @@ class GitPushService
if
Gitlab
.
config
.
elasticsearch
.
enabled
project
.
repository
.
index_commits
(
from_rev:
oldrev
,
to_rev:
newrev
)
project
.
repository
.
index_blobs
(
from_rev:
oldrev
,
to_rev:
old
rev
)
project
.
repository
.
index_blobs
(
from_rev:
oldrev
,
to_rev:
new
rev
)
end
CreateCommitBuildsService
.
new
.
execute
(
project
,
@user
,
@push_data
,
mirror_update:
mirror_update
)
...
...
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