Skip to content

Commit 4dfc106

Browse files
authored
Merge pull request #662 from jburel/gunicorn
Add gunicorn doc links
2 parents dcfc2e2 + 4fc24c4 commit 4dfc106

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

omeroweb/settings.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ def check_session_engine(s):
573573
(
574574
"A string representing Gunicorn additional arguments. "
575575
"Check Gunicorn Documentation "
576-
"https://docs.gunicorn.org/en/latest/settings.html"
576+
"https://gunicorn.org/reference/settings/"
577577
),
578578
],
579579
"omero.web.wsgi_workers": [
@@ -583,7 +583,7 @@ def check_session_engine(s):
583583
(
584584
"The number of worker processes for handling requests. "
585585
"Check Gunicorn Documentation "
586-
"https://docs.gunicorn.org/en/stable/settings.html#workers"
586+
"https://gunicorn.org/reference/settings/#worker-processes"
587587
),
588588
],
589589
"omero.web.wsgi_timeout": [
@@ -593,7 +593,7 @@ def check_session_engine(s):
593593
(
594594
"Workers silent for more than this many seconds are killed "
595595
"and restarted. Check Gunicorn Documentation "
596-
"https://docs.gunicorn.org/en/stable/settings.html#timeout"
596+
"https://gunicorn.org/reference/settings/#timeout"
597597
),
598598
],
599599
"omero.web.session_serializer": [
@@ -983,7 +983,7 @@ def check_session_engine(s):
983983
"Number of thumbnails retrieved to prevent from loading them"
984984
" all at once. Make sure the size is not too big, otherwise"
985985
" you may exceed limit request line, see"
986-
" https://docs.gunicorn.org/en/latest/settings.html"
986+
" https://gunicorn.org/reference/settings/"
987987
"?highlight=limit_request_line"
988988
),
989989
],
@@ -1274,7 +1274,7 @@ def check_worker_class(c):
12741274
(
12751275
"The default OMERO.web uses sync workers to handle most “normal” "
12761276
"types of workloads. Check Gunicorn Design Documentation "
1277-
"https://docs.gunicorn.org/en/stable/design.html"
1277+
"https://gunicorn.org/design"
12781278
),
12791279
],
12801280
"omero.web.wsgi_worker_connections": [
@@ -1283,8 +1283,8 @@ def check_worker_class(c):
12831283
int,
12841284
(
12851285
"(ASYNC WORKERS only) The maximum number of simultaneous clients. "
1286-
"Check Gunicorn Documentation https://docs.gunicorn.org"
1287-
"/en/stable/settings.html#worker-connections"
1286+
"Check Gunicorn Documentation https://gunicorn.org/asgi"
1287+
"/#worker-connections"
12881288
),
12891289
],
12901290
"omero.web.wsgi_threads": [
@@ -1294,7 +1294,7 @@ def check_worker_class(c):
12941294
(
12951295
"(SYNC WORKERS only) The number of worker threads for handling "
12961296
"requests. Check Gunicorn Documentation "
1297-
"https://docs.gunicorn.org/en/stable/settings.html#threads"
1297+
"https://gunicorn.org/design/#how-many-threads"
12981298
),
12991299
],
13001300
}

0 commit comments

Comments
 (0)