From 3440864cbe13cb83ddc68e9fccfac97e5bec83d1 Mon Sep 17 00:00:00 2001 From: almostinf <87192879+almostinf@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:32:06 +0300 Subject: [PATCH] fix(finder): improve err costly series by tag message (#259) --- finder/tagged.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/finder/tagged.go b/finder/tagged.go index dbb8bebfa..a41aafc27 100644 --- a/finder/tagged.go +++ b/finder/tagged.go @@ -20,7 +20,7 @@ import ( var ( // ErrEmptyArgs = errors.New("empty arguments") - ErrCostlySeriesByTag = errs.NewErrorWithCode("seriesByTag argument is too costly", http.StatusForbidden) + ErrCostlySeriesByTag = errs.NewErrorWithCode("seriesByTag argument has too much wildcard and regex terms", http.StatusForbidden) ) type TaggedTermOp int