1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

fix issue in package gproc

This commit is contained in:
John Guo 2022-03-07 09:57:51 +08:00
parent bb6e8fe7a8
commit 531cc7b864
2 changed files with 7 additions and 5 deletions

View File

@ -128,7 +128,7 @@ func (s *Server) Start() error {
swaggerui.Init()
s.AddStaticPath(s.config.SwaggerPath, swaggerUIPackedPath)
s.BindHookHandler(s.config.SwaggerPath+"/*", HookBeforeServe, s.swaggerUI)
s.Logger().Debugf(
s.Logger().Infof(
ctx,
`swagger ui is serving at address: %s%s/`,
s.getListenAddress(),

View File

@ -107,10 +107,12 @@ func getCommPidFolderPath() (folderPath string, err error) {
break
}
}
err = gerror.Newf(
`cannot find available folder for storing pid to port mapping files in paths: %+v`,
availablePaths,
)
if commPidFolderPath == "" {
err = gerror.Newf(
`cannot find available folder for storing pid to port mapping files in paths: %+v`,
availablePaths,
)
}
})
folderPath = commPidFolderPath
return