提交 2ebd2d41 编写于 作者: D 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
......@@ -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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册