(refs #280)Commit count limitation is changed to 10000 from 1000.

This commit is contained in:
takezoe
2014-03-02 01:23:30 +09:00
parent 0fa1922bb0
commit 94576a876a
2 changed files with 2 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ object JGitUtil {
using(Git.open(getRepositoryDir(owner, repository))){ git =>
try {
// get commit count
val commitCount = git.log.all.call.iterator.asScala.map(_ => 1).take(1000).sum
val commitCount = git.log.all.call.iterator.asScala.map(_ => 1).take(10000).sum
RepositoryInfo(
owner, repository, s"${baseUrl}/git/${owner}/${repository}.git",