diff --git a/manifests/init.pp b/manifests/init.pp index 307dac4..5a45f00 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -53,6 +53,7 @@ # httpd_acceptorthreads: # httpd_minthreads: # httpd_maxthreads: +# httpd_maxqueued: # httpd_maxwait: # Gerrit configuration options; see Gerrit docs. # commentlinks: @@ -176,6 +177,7 @@ class gerrit( $httpd_acceptorthreads = '', $httpd_minthreads = '', $httpd_maxthreads = '', + $httpd_maxqueued = '', $httpd_maxwait = '', $commentlinks = [], $trackingids = [], @@ -368,6 +370,7 @@ class gerrit( # - $httpd_acceptorthreads # - $httpd_minthreads # - $httpd_maxthreads + # - $httpd_maxqueued # - $commentlinks # - $trackingids # - $enable_melody diff --git a/templates/gerrit.config.erb b/templates/gerrit.config.erb index cb9cbcc..45616d3 100644 --- a/templates/gerrit.config.erb +++ b/templates/gerrit.config.erb @@ -100,6 +100,9 @@ <% if @httpd_maxthreads != "" -%> maxThreads = <%= @httpd_maxthreads %> <% end -%> +<% if @httpd_maxqueued != "" -%> + maxQueued = <%= @httpd_maxqueued %> +<% end -%> [cache] directory = cache [cache "web_sessions"]