Comment on Graceful server restart with GoparentComments−_SoulouOP11yHi alexk, post author here,The 'manners' package only enables graceful shutdown in a HTTP server, there is still work to be done to restart it gracefully, that's what I'm trying to show in the article.−alexk11yGreat article btw!That's why I've added missing methods here:https://github.com/mailgun/mannersGetting files from listener:https://github.com/mailgun/manners/blob/master/listener.go#L...Starting server with external listener:https://github.com/mailgun/manners/blob/master/server.go#L87It's used to restart Vulcand without downtime:https://github.com/mailgun/vulcand/blob/master/service/servi...Let's collaborate on this as a library if you are interested
Comments
Hi alexk, post author here,
The 'manners' package only enables graceful shutdown in a HTTP server, there is still work to be done to restart it gracefully, that's what I'm trying to show in the article.
Great article btw!
That's why I've added missing methods here:
https://github.com/mailgun/manners
Getting files from listener:
https://github.com/mailgun/manners/blob/master/listener.go#L...
Starting server with external listener:
https://github.com/mailgun/manners/blob/master/server.go#L87
It's used to restart Vulcand without downtime:
https://github.com/mailgun/vulcand/blob/master/service/servi...
Let's collaborate on this as a library if you are interested