Hi Justin, Thank you for your answer. The thing is, from my understanding, the request context is done once the HTTP response has been returned so if my goroutines rely on this context, it's cancelled as soon as the response is sent. I would like my goroutines to be cancelled only when a graceful shutdown sign is intercepted by the server.
Or maybe I'm wrong but in this case, I would love to see a working example. Thank you! On Wednesday, January 24, 2018 at 7:33:02 PM UTC+1, Justin Israel wrote: > > > > On Thu, Jan 25, 2018, 4:50 AM Joris Berthelot <jo...@berthelot.tel > <javascript:>> wrote: > >> Hello everybody, >> >> First post in this group, I'm a bit new for the language (I've been more >> and less writing Go for a year now) and I have a question for you guys. >> >> I would like to know how to broadcast a HTTP server shutdown to any >> running goroutines launched by HTTP handlers. From what I understood, the >> common graceful shutdown uses a timed out context to gracefully close the >> active connections and block new incoming ones. >> >> Let's say I have a handler that returns a 202 response and launches >> several goroutines for mid-long running tasks. How, could I catch the >> graceful shutdown signal from main down deep the goroutines. >> >> Like I said, I'm still a bit new and this is an architectural question >> I've been trying to solve for the past couple days, without success. I >> searched real quick in the group but I mostly found questions for graceful >> shutdown pre-Go 1.8. >> > > The handler will be passed the request object, which provides access to a > context > > https://godoc.org/net/http#Request.Context > > If you pass the context to your goroutines, then it is just a matter of > checking the Context for cancellation. When you use the shutdown feature of > the server, this will propagate > > https://godoc.org/net/http#Server.Shutdown > > > >> Thank you very much, >> -Joris >> >> -- >> You received this message because you are subscribed to the Google Groups >> "golang-nuts" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to golang-nuts...@googlegroups.com <javascript:>. >> For more options, visit https://groups.google.com/d/optout. >> > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.