diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2015-01-12 07:23:15 +0100 |
---|---|---|
committer | Alberto Bertogli <albertito@blitiri.com.ar> | 2015-01-12 10:00:18 +0100 |
commit | bb9bad89d17ed584f52015ae6db6398889d23a81 (patch) | |
tree | 4442ab43d6001289b3a5f94775378553803eeb6f /git-arr | |
parent | 56fcfd0278377eb6f3b0318b1f3c0a9e6abf7895 (diff) | |
download | git-arr-fork-bb9bad89d17ed584f52015ae6db6398889d23a81.zip |
git-arr: increase default 'max_pages' value
The 'max_pages' default value of 5 is quite low. Coupled with
'commits_per_page' default 50, this allows for only 250 commits, which
is likely unsuitable for even relatively small projects. Options are to
remove the cap altogether or to raise the default limit. At this time,
choose the latter, which should be friendlier to larger projects, in
general, while still guarding against run-away storage space
consumption.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
Diffstat (limited to 'git-arr')
-rwxr-xr-x | git-arr | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ def load_config(path): 'recursive': 'no', 'commits_in_summary': '10', 'commits_per_page': '50', - 'max_pages': '5', + 'max_pages': '250', 'web_url': '', 'web_url_file': 'web_url', 'git_url': '', |