Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions omeroweb/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def check_session_engine(s):
(
"A string representing Gunicorn additional arguments. "
"Check Gunicorn Documentation "
"https://docs.gunicorn.org/en/latest/settings.html"
"https://gunicorn.org/reference/settings/"
),
],
"omero.web.wsgi_workers": [
Expand All @@ -583,7 +583,7 @@ def check_session_engine(s):
(
"The number of worker processes for handling requests. "
"Check Gunicorn Documentation "
"https://docs.gunicorn.org/en/stable/settings.html#workers"
"https://gunicorn.org/reference/settings/#worker-processes"
),
],
"omero.web.wsgi_timeout": [
Expand All @@ -593,7 +593,7 @@ def check_session_engine(s):
(
"Workers silent for more than this many seconds are killed "
"and restarted. Check Gunicorn Documentation "
"https://docs.gunicorn.org/en/stable/settings.html#timeout"
"https://gunicorn.org/reference/settings/#timeout"
),
],
"omero.web.session_serializer": [
Expand Down Expand Up @@ -983,7 +983,7 @@ def check_session_engine(s):
"Number of thumbnails retrieved to prevent from loading them"
" all at once. Make sure the size is not too big, otherwise"
" you may exceed limit request line, see"
" https://docs.gunicorn.org/en/latest/settings.html"
" https://gunicorn.org/reference/settings/"
"?highlight=limit_request_line"
),
],
Expand Down Expand Up @@ -1274,7 +1274,7 @@ def check_worker_class(c):
(
"The default OMERO.web uses sync workers to handle most “normal” "
"types of workloads. Check Gunicorn Design Documentation "
"https://docs.gunicorn.org/en/stable/design.html"
"https://gunicorn.org/design"
),
],
"omero.web.wsgi_worker_connections": [
Expand All @@ -1283,8 +1283,8 @@ def check_worker_class(c):
int,
(
"(ASYNC WORKERS only) The maximum number of simultaneous clients. "
"Check Gunicorn Documentation https://docs.gunicorn.org"
"/en/stable/settings.html#worker-connections"
"Check Gunicorn Documentation https://gunicorn.org/asgi"
"/#worker-connections"
),
],
"omero.web.wsgi_threads": [
Expand All @@ -1294,7 +1294,7 @@ def check_worker_class(c):
(
"(SYNC WORKERS only) The number of worker threads for handling "
"requests. Check Gunicorn Documentation "
"https://docs.gunicorn.org/en/stable/settings.html#threads"
"https://gunicorn.org/design/#how-many-threads"
),
],
}
Expand Down
Loading