mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Replace MinInt/MaxInt with generic versions
This commit is contained in:
parent
6f5aaa1ec4
commit
e03ccb3166
9 changed files with 82 additions and 74 deletions
|
@ -19,6 +19,7 @@ import (
|
|||
"github.com/navidrome/navidrome/server/events"
|
||||
"github.com/navidrome/navidrome/server/subsonic/responses"
|
||||
"github.com/navidrome/navidrome/utils"
|
||||
"github.com/navidrome/navidrome/utils/math2"
|
||||
)
|
||||
|
||||
const Version = "1.16.1"
|
||||
|
@ -137,7 +138,7 @@ func (api *Router) routes() http.Handler {
|
|||
})
|
||||
r.Group(func(r chi.Router) {
|
||||
// configure request throttling
|
||||
maxRequests := utils.MaxInt(2, runtime.NumCPU())
|
||||
maxRequests := math2.Max(2, runtime.NumCPU())
|
||||
r.Use(middleware.ThrottleBacklog(maxRequests, consts.RequestThrottleBacklogLimit, consts.RequestThrottleBacklogTimeout))
|
||||
hr(r, "getAvatar", api.GetAvatar)
|
||||
hr(r, "getCoverArt", api.GetCoverArt)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue