I'm using Gunicorn to run my Flask website in production. It all works fine, but when deploying updates I always stop and start the server again. I now read about this reload flag which "restarts workers when code changes" which according to the docs is "intended for development". If I could use this in production it would prevent the need to stop & restart gunicorn when deploying.
What is the reason that I should not use auto-reload in production?