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
This commit is contained in:
Dmitriy Zaporozhets
2014-09-29 12:26:51 +00:00
+3 -1
View File
@@ -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