fix: update Gunicorn access log file configuration to use stdout
This commit is contained in:
parent
a86d286a34
commit
03ba4df625
@ -27,7 +27,7 @@ class GunicornService(BaseService):
|
|||||||
'--max-requests', '10240',
|
'--max-requests', '10240',
|
||||||
'--max-requests-jitter', '2048',
|
'--max-requests-jitter', '2048',
|
||||||
'--access-logformat', log_format,
|
'--access-logformat', log_format,
|
||||||
'--access-logfile', 'None',
|
'--access-logfile', '-',
|
||||||
'--error-logfile', '-'
|
'--error-logfile', '-'
|
||||||
]
|
]
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
|
|||||||
@ -35,7 +35,7 @@ class GunicornLocalModelService(BaseService):
|
|||||||
'--max-requests', '10240',
|
'--max-requests', '10240',
|
||||||
'--max-requests-jitter', '2048',
|
'--max-requests-jitter', '2048',
|
||||||
'--access-logformat', log_format,
|
'--access-logformat', log_format,
|
||||||
'--access-logfile', 'None',
|
'--access-logfile', '-',
|
||||||
'--error-logfile', '-'
|
'--error-logfile', '-'
|
||||||
]
|
]
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user