Hey guys,
I have a question regarding gunicorn. I run my FastAPI application in Docker with gunicorn:
CMD [ "gunicorn", "main:app", "--workers", "8", "--worker-class", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:8080" ]
and I am getting this error from supertokens:
RuntimeWarning: Inconsistent mode detected, check if you are using the right asgi / wsgi mode
Supertokens docs say
use wsgi mode if you are running using gunicorn
. Should I still use wsgi mode even if I have Uvicorn workers?