refactor: use a more straightforward return value (#16070)

Signed-off-by: beforetech <mail@before.tech>
This commit is contained in:
boforetech 2025-02-24 13:25:57 +01:00 committed by GitHub
parent e837ac9fe2
commit 6ec89f14c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -159,7 +159,7 @@ func (a *collectResultAppender) Append(ref storage.SeriesRef, lset labels.Labels
if err != nil {
return 0, err
}
return ref, err
return ref, nil
}
func (a *collectResultAppender) AppendExemplar(ref storage.SeriesRef, l labels.Labels, e exemplar.Exemplar) (storage.SeriesRef, error) {