eventlet is required for Gunicorn to use the eventlet worker class so ensure that itis installed in your environment and then Update your startup command in Azure App Services to specify the eventlet worker.
gunicorn --bind=0.0.0.0 --timeout 600 --access-logfile '-' --error-logfile '-' --worker-class eventlet app:app
restart your Azure App Service
start your application
gunicorn --worker-class eventlet -w 1 module:app