From 4d7068931a8228a176fe2e81d79719144ad38f49 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Tue, 19 Mar 2024 00:30:10 -0700 Subject: [PATCH] change the notification queue full message (#19293) --- internal/event/targetlist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/event/targetlist.go b/internal/event/targetlist.go index 5d261cd6c..c43c76a06 100644 --- a/internal/event/targetlist.go +++ b/internal/event/targetlist.go @@ -309,7 +309,7 @@ func (list *TargetList) sendAsync(event Event, targetIDset TargetIDSet) { return default: list.eventsSkipped.Add(1) - err := fmt.Errorf("concurrent target notifications exceeded %d, notification endpoint is too slow to accept events on incoming requests", maxConcurrentAsyncSend) + err := fmt.Errorf("concurrent target notifications exceeded %d, configured notification target is too slow to accept events for the incoming request rate", maxConcurrentAsyncSend) for id := range targetIDset { reqInfo := &logger.ReqInfo{} reqInfo.AppendTags("targetID", id.String())