summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-04-24 18:52:49 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-04-24 18:52:49 +0200
commit4268f2f0d886f408de2c0fca214fcf07bce47979 (patch)
treee29fdf5c15ae93dbf2fc428530cea4cbca2c02b4
parentAdd everything. (diff)
downloadgunicorn-4268f2f0d886f408de2c0fca214fcf07bce47979.tar.gz
gunicorn-4268f2f0d886f408de2c0fca214fcf07bce47979.tar.xz
Add missing 's'.
-rw-r--r--manifests/instance.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/instance.pp b/manifests/instance.pp
index 0cd72bc..9915676 100644
--- a/manifests/instance.pp
+++ b/manifests/instance.pp
@@ -17,7 +17,7 @@ define gunicorn::instance (
String $app,
String $address,
String $instance_name = $name,
- Integer $workers = $facts['processor']['count'] * 2 + 1,
+ Integer $workers = $facts['processors']['count'] * 2 + 1,
Variant[String, Integer] $user = $gunicorn::setup::user,
Variant[String, Integer] $group = $gunicorn::setup::group,
) {