We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe9e26 commit d2af28dCopy full SHA for d2af28d
routers/common/qos.go
@@ -75,6 +75,7 @@ func QoS() func(next http.Handler) http.Handler {
75
// Check if the request can begin processing.
76
err := c.Acquire(ctx, int(priority))
77
if err != nil {
78
+ log.Error("QoS error, dropping request of priority %s: %v", priority, err)
79
renderServiceUnavailable(w, req)
80
return
81
}
0 commit comments