Commit 2ebd2d41 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'faster-rev-list' into 'master'

Faster rev list

Since rugged does not support path filtering yet it affects GitLab performance.
So we use `git rev-list` as temporary but fast and reliable solution for looking last commit of tree

Fixes #1622

See merge request !1127
parents 0e8e9e5d 44bc5fe5
......@@ -223,7 +223,9 @@ class Repository
end
def last_commit_for_path(sha, path)
commits(sha, path, 1).last
args = %W(git rev-list --max-count 1 #{sha} -- #{path})
sha = Gitlab::Popen.popen(args, path_to_repo).first.strip
commit(sha)
end
# Remove archives older than 2 hours
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment