Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.golangci.yaml# Options for analysis running.
# Options for analysis running.
run:
# The default concurrency value is the number of available CPU.
# concurrency: 8
Expand Down
2 changes: 1 addition & 1 deletion expr/functions/groupByNode/function.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (f *groupByNode) Do(ctx context.Context, eval interfaces.Evaluator, e parse
if err != nil {
return nil, err
} else if nexpr.Type() != parser.EtFunc {
err = merry.WithMessagef(parser.ErrInvalidArg, "unsupported "+target+" callback function")
err = merry.WithMessage(parser.ErrInvalidArg, "unsupported "+target+" callback function")
return nil, err
}
// remove all stub_ prefixes we've prepended before
Expand Down
Loading