diff options
author | James Moger <james.moger@gitblit.com> | 2012-12-05 17:20:06 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-12-05 17:20:06 -0500 |
commit | 8295dd6cab32df383a30e4bd78e4aff17cfa2187 (patch) | |
tree | 897a450f316fb420d3ff5255784a0f916ff4d5c8 /distrib | |
parent | 428b2244aadeb4724e705044d73ac74be724f6e9 (diff) | |
download | gitblit-8295dd6cab32df383a30e4bd78e4aff17cfa2187.tar.gz gitblit-8295dd6cab32df383a30e4bd78e4aff17cfa2187.zip |
Global and per-repository setting to throttle prolific repos in Activity page (issue-173)
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/gitblit.properties | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index d57f9ba1..e3d72211 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -522,6 +522,14 @@ web.shortCommitIdLength = 6 # SINCE 0.8.0
web.allowFlashCopyToClipboard = true
+# Default maximum number of commits that a repository may contribute to the
+# activity page, regardless of the selected duration. This setting may be valuable
+# for an extremely busy server. This value may also be configed per-repository
+# in Edit Repository. 0 disables this throttle.
+#
+# SINCE 1.2.0
+web.maxActivityCommits = 0
+
# Default number of entries to include in RSS Syndication links
#
# SINCE 0.5.0
|