diff options
author | James Moger <james.moger@gitblit.com> | 2014-05-29 12:40:35 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-05-29 12:40:35 -0400 |
commit | fb9cd5968346045e1129406ca54639075316a396 (patch) | |
tree | e0b032b69b41cbd3b4815d6866224ab8cfc66c98 /src/main/distrib | |
parent | 4bdf5a568311796772b46efc6e6ce30e10a01757 (diff) | |
download | gitblit-fb9cd5968346045e1129406ca54639075316a396.tar.gz gitblit-fb9cd5968346045e1129406ca54639075316a396.zip |
Add setting to control thread pool size for default work queue
Diffstat (limited to 'src/main/distrib')
-rw-r--r-- | src/main/distrib/data/gitblit.properties | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 7d74c281..b27395c3 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -613,6 +613,12 @@ plugins.folder = ${baseFolder}/plugins # SINCE 1.5.0
plugins.registry = http://plugins.gitblit.com/plugins.json
+# Number of threads used to handle miscellaneous tasks in the background.
+#
+# SINCE 1.6.0
+# RESTART REQUIRED
+execution.defaultThreadPoolSize = 1
+
#
# Groovy Integration
#
|