From c22f8b4a310c945d4efdb8e08e398e880c4cc8ab Mon Sep 17 00:00:00 2001 From: Petr Korolev Date: Fri, 6 Mar 2015 15:09:13 +0200 Subject: [PATCH] increase number of threads to 50, typo fix --- README.md | 2 +- lib/github_changelog_generator.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e52eb02..f3087af 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ Here is a [wikipage list of alternatives](https://github.com/skywinder/Github-Ch ### Projects using this library [Wikipage with list of projects](https://github.com/skywinder/Github-Changelog-Generator/wiki/Projects-using-Github-Changelog-Generator) -*If you are using `github_changelog_generator` for generation change log in your project or know of project that uses it, please add it to [this] (https://github.com/skywinder/Github-Changelog-Generator/wiki/Projects-using-Github-Changelog-Generator) list.* +*If you are using `github_changelog_generator` for generation change log in your project or know another project that uses it, please add it to [this] (https://github.com/skywinder/Github-Changelog-Generator/wiki/Projects-using-Github-Changelog-Generator) list.* ## Am I missed some essential feature? diff --git a/lib/github_changelog_generator.rb b/lib/github_changelog_generator.rb index 5f1a7d8..9f768aa 100755 --- a/lib/github_changelog_generator.rb +++ b/lib/github_changelog_generator.rb @@ -606,7 +606,7 @@ module GitHubChangelogGenerator def fetch_events_async(issues) i = 0 - max_thread_number = 10 + max_thread_number = 50 threads = [] issues.each_slice(max_thread_number) { |issues_slice| issues_slice.each { |issue|