-
-
Notifications
You must be signed in to change notification settings - Fork 761
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add --reload
flag
#98
Comments
We now have auto-reloading when |
The h11 Changelog for 0.10 only include those items: - Drop support for Python 3.4. - Support Python 3.8. - Make error messages returned by match failures less ambiguous (encode#98).
The h11 Changelog for 0.10 only include those items: - Drop support for Python 3.4. - Support Python 3.8. - Make error messages returned by match failures less ambiguous (#98).
How can I force an auto-reload if I make code changes are deployed in production? |
You can't,
The reload mode is more intended to be used in development.
…On Sun, Dec 20, 2020, 9:07 AM Abhyudaya Srinet ***@***.***> wrote:
How can I force an auto-reload if I make code changes are deployed in
production?
I'm currently setting up an API endpoint using fastapi and deploying it
with uvicorn + nginx
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#98 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAINSPWFGYFQANRSK5FLIHLSVWWEXANCNFSM4FHT3UFQ>
.
|
@euri10 how could one automate a deployment for such a case then? |
I would subscribe to #853
If this lands then we may add another signal, SIGUSR1 comes to mind, for
the restart method of MultiProcess that could be triggered with a kill -1
pid
…On Sun, Dec 20, 2020, 11:33 AM Abhyudaya Srinet ***@***.***> wrote:
how would one automate a deployment for such a case then?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#98 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAINSPRTTEC5F4J7YU46QETSVXHH5ANCNFSM4FHT3UFQ>
.
|
Thanks, will watch it. Meanwhile, I guess I will have to go with restarting the gunicorn service when code deployments are triggered. |
Auto-reloading when code changes
The text was updated successfully, but these errors were encountered: