From 8e5ed84f49a1217879566f1aaec78d0ea03d097e Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 24 Jan 2024 13:22:07 -0800 Subject: [PATCH] 14691 add documentation for gunicorn bug --- docs/installation/4-gunicorn.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/installation/4-gunicorn.md b/docs/installation/4-gunicorn.md index 1183a9123..2f72be658 100644 --- a/docs/installation/4-gunicorn.md +++ b/docs/installation/4-gunicorn.md @@ -58,3 +58,6 @@ You should see output similar to the following: If the NetBox service fails to start, issue the command `journalctl -eu netbox` to check for log messages that may indicate the problem. Once you've verified that the WSGI workers are up and running, move on to HTTP server setup. + +!!! note + There is a bug in the current stable release of gunicorn that NetBox ships with (v21.2.0) which can cause 502 errors when multiple sequential requests are sent to gunicorn. If you encounter this problem you can downgrade gunicorn via the command `pip install gunicorn==20.1.0`. Note however that this will remove support for python 3.11. More information on this gunicorn bug can be found at https://github.com/benoitc/gunicorn/issues/3038