stop: use graceful shutdown
This commit is contained in:
parent
b98513ad36
commit
c0fea38790
@ -58,6 +58,7 @@ func FooControllerHandler(ctx *framework.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func UserLoginController(ctx *framework.Context) error {
|
func UserLoginController(ctx *framework.Context) error {
|
||||||
|
time.Sleep(10 * time.Second)
|
||||||
ctx.WriteJSON(http.StatusOK, "ok")
|
ctx.WriteJSON(http.StatusOK, "ok")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
6
main.go
6
main.go
@ -1,7 +1,9 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
@ -30,4 +32,8 @@ func main() {
|
|||||||
|
|
||||||
<-quit
|
<-quit
|
||||||
fmt.Println("YOLO")
|
fmt.Println("YOLO")
|
||||||
|
|
||||||
|
if err := server.Shutdown(context.Background()); err != nil {
|
||||||
|
log.Fatal("server shutdown: ", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user