gin-gonic / examples

A repository to host examples and tutorials for Gin.

Home Page:https://gin-gonic.com/docs/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

graceful-shutdown(in https://github.com/gin-gonic/examples/blob/master/graceful-shutdown/graceful-shutdown/server.go)

Jarnpher553 opened this issue · comments

select {
case <-ctx.Done():
log.Println("timeout of 5 seconds.")
}

why is not under?

select {
case <-ctx.Done():
log.Println("timeout of 5 seconds.")
default:
}

if you need default, please do it, thanks!