mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-19 21:45:39 +00:00
Preload gunicorn app to only invoke the appconfig ready functions once
This commit is contained in:
@ -8,3 +8,6 @@ workers = multiprocessing.cpu_count() * 2 + 1
|
|||||||
|
|
||||||
max_requests = 1000
|
max_requests = 1000
|
||||||
max_requests_jitter = 50
|
max_requests_jitter = 50
|
||||||
|
|
||||||
|
# preload app so that the ready functions are only executed once
|
||||||
|
preload_app = True
|
||||||
|
@ -37,3 +37,6 @@ logger.info(f"Starting gunicorn server with {workers} workers")
|
|||||||
|
|
||||||
max_requests = 1000
|
max_requests = 1000
|
||||||
max_requests_jitter = 50
|
max_requests_jitter = 50
|
||||||
|
|
||||||
|
# preload app so that the ready functions are only executed once
|
||||||
|
preload_app = True
|
||||||
|
@ -3,3 +3,6 @@ import multiprocessing
|
|||||||
bind = "0.0.0.0:8000"
|
bind = "0.0.0.0:8000"
|
||||||
|
|
||||||
workers = multiprocessing.cpu_count() * 2 + 1
|
workers = multiprocessing.cpu_count() * 2 + 1
|
||||||
|
|
||||||
|
# preload app so that the ready functions are only executed once
|
||||||
|
preload_app = True
|
||||||
|
Reference in New Issue
Block a user