A bug of gunicorn.conf.py: you shouldn't use the variable of 'config' inside of it
Happend when
gunicorn -c src/configs/gunicorn.conf.py main:app
wrong
from src.configs import config
right
from src.configs import config as kkkkkkkk
gunicorn -c src/configs/gunicorn.conf.py main:app
from src.configs import config
from src.configs import config as kkkkkkkk