我通过gin 的 https://github.com/fvbock/endless提供 HTTP 服务。我想看看与基本 HTTP 服务器的区别。
我已经发送syscall.SIGUSR1
了信号:
syscall.Kill(getPid(), syscall.SIGUSR1)
该应用程序没有退出,但我无法检测到重新启动。
我要做的是在 toml 配置文件更改时为应用程序初始化新配置。
我的代码如下:
package main
import (
"os"
"fmt"
"syscall"
"github.com/gin-gonic/gin"
"github.com/fvbock/endless"
"github.com/BurntSushi/toml"
)
type Config struct {
Age int
Cats []string
}
var cfg Config
func restart(c *gin.Context) {
syscall.Kill(os.Getpid(), syscall.SIGUSR1)
}
func init() {
toml.DecodeFile("config.toml", &cfg)
fmt.Println("Testing", cfg)
}
func main() {
router := gin.New()
router.GET("/restart", restart)
if err := endless.ListenAndServe("localhost:7777", router); err != nil {
panic(err)
}
}
当我点击重启端点时,我希望打印出 toml 配置。