diff --git a/src/lib/cache/helper.go b/src/lib/cache/helper.go index 0cc4229f554..4ff7eb4d051 100644 --- a/src/lib/cache/helper.go +++ b/src/lib/cache/helper.go @@ -47,7 +47,7 @@ func FetchOrSave(ctx context.Context, c Cache, key string, value interface{}, bu defer fetchOrSaveMu.Unlock(lockKey) - // fetch again to avoid to build the value multi-times + // fetch again to avoid building the value multi-times err = c.Fetch(ctx, key, value) if err == nil { return nil