fix(s3): don't bind s3 port if s3 is not enabled (#6291)

This commit is contained in:
itsHenry
2024-04-03 10:09:48 +08:00
committed by GitHub
parent d8e190406a
commit 58c3cb3cf6
2 changed files with 4 additions and 10 deletions

View File

@ -34,12 +34,6 @@ func S3(g *gin.RouterGroup) {
}
func S3Server(g *gin.RouterGroup) {
if !conf.Conf.S3.Enable {
g.Any("/*path", func(c *gin.Context) {
common.ErrorStrResp(c, "S3 server is not enabled", 403)
})
return
}
h, _ := s3.NewServer(context.Background())
g.Any("/*path", gin.WrapH(h))
}