This commit is contained in:
crusader 2017-12-14 17:49:55 +09:00
parent d11b0afd2b
commit 2b011ea8c3

View File

@ -52,6 +52,7 @@ func (sh *ServerHandlers) Listen(serverCTX server.ServerContext) (net.Listener,
func (sh *ServerHandlers) OnStart(serverCTX server.ServerContext) {
sh.ServerHandlers.OnStart(serverCTX)
os.Remove(sh.pidPath)
s := strconv.FormatInt(int64(sh.port), 10)
ioutil.WriteFile(sh.pidPath, []byte(s), os.ModePerm)
}