From ec3c1dbd9423b68e126f6a84d8830a045d49782d Mon Sep 17 00:00:00 2001 From: Michael Bishop Date: Wed, 1 Aug 2018 14:47:57 -0400 Subject: [PATCH] Fix typo in --max-requests documentation (#1845) --- gunicorn/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index aa978949..6761b9c9 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -686,7 +686,7 @@ class MaxRequests(Setting): desc = """\ The maximum number of requests a worker will process before restarting. - Any value greater than zero will limit the number of requests a work + Any value greater than zero will limit the number of requests a worker will process before automatically restarting. This is a simple method to help limit the damage of memory leaks.