mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
* Fix validate_reload by returning the validated value When '--reload=RELOADER_TYPE' was implemented, `validate_reload()` was added but in one of the last refactorings, it lost the return statement at the end of the function. As a result, the '--reload' config value was totally broken. This resolves the issue by adding the missing return. * Fix tests by changing --reload to always require an argument - '--reload' always requires an argument now - Added 'auto' as the default value for '--reload'