|
@@ -1633,6 +1633,7 @@ import (
|
|
|
"net/http"
|
|
"net/http"
|
|
|
"os"
|
|
"os"
|
|
|
"os/signal"
|
|
"os/signal"
|
|
|
|
|
+ "syscall"
|
|
|
"time"
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gin-gonic/gin"
|
|
@@ -1660,7 +1661,10 @@ func main() {
|
|
|
// Wait for interrupt signal to gracefully shutdown the server with
|
|
// Wait for interrupt signal to gracefully shutdown the server with
|
|
|
// a timeout of 5 seconds.
|
|
// a timeout of 5 seconds.
|
|
|
quit := make(chan os.Signal)
|
|
quit := make(chan os.Signal)
|
|
|
- signal.Notify(quit, os.Interrupt)
|
|
|
|
|
|
|
+ // kill (no param) default send syscanll.SIGTERM
|
|
|
|
|
+ // kill -2 is syscall.SIGINT
|
|
|
|
|
+ // kill -9 is syscall. SIGKILL but can"t be catch, so don't need add it
|
|
|
|
|
+ signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
|
|
|
<-quit
|
|
<-quit
|
|
|
log.Println("Shutdown Server ...")
|
|
log.Println("Shutdown Server ...")
|
|
|
|
|
|