diff --git a/xhttp/xhttpserver/busy.go b/xhttp/xhttpserver/busy.go index c6b4189..3c762e3 100644 --- a/xhttp/xhttpserver/busy.go +++ b/xhttp/xhttpserver/busy.go @@ -52,7 +52,7 @@ func (b Busy) Then(next http.Handler) http.Handler { } bh := &busyHandler{ - maxConcurrentRequests: int32(b.MaxConcurrentRequests), + maxConcurrentRequests: int32(b.MaxConcurrentRequests), //nolint next: next, }