fix: update Gunicorn access log file configuration to use stdout
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run

This commit is contained in:
CaptainB 2025-07-17 21:43:27 +08:00
parent a86d286a34
commit 03ba4df625
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class GunicornService(BaseService):
'--max-requests', '10240',
'--max-requests-jitter', '2048',
'--access-logformat', log_format,
'--access-logfile', 'None',
'--access-logfile', '-',
'--error-logfile', '-'
]
if DEBUG:

View File

@ -35,7 +35,7 @@ class GunicornLocalModelService(BaseService):
'--max-requests', '10240',
'--max-requests-jitter', '2048',
'--access-logformat', log_format,
'--access-logfile', 'None',
'--access-logfile', '-',
'--error-logfile', '-'
]
if DEBUG: