-
Notifications
You must be signed in to change notification settings - Fork 8k
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
Graceful Restarts? #296
Comments
Adding a library like that may opens a new world of issues. I am not considering a built-in support for this right now. Even though, I am interested in zero downtime restarts. If you want to start using router := gin.Default()
router.GET("/", handler)
// [...]
endless.ListenAndServe(":4242", router) |
I don't think it should be included in the library, it may be confusing for people just getting started with the library and may become an issue during development. I'm currently doing what @manucorporat suggested. |
good tools is quick my develop speek! |
Manners by the folks at BrainTree seems like an alternative to endless 😃 |
endless not supported under windows platform. |
Why not add this functionality in gin lib itself? Do we have any blocker for it? |
How about integrating zero downtime restarts in gin server? Maybe using endless?
https://github.com/fvbock/endless
The text was updated successfully, but these errors were encountered: