(ctx context.Context, keys []string, opts ...Option)
| 40 | } |
| 41 | |
| 42 | func (t *SpanlessTracingCache) GetMulti(ctx context.Context, keys []string, opts ...Option) (result map[string][]byte) { |
| 43 | result, err := t.GetMultiWithError(ctx, keys, opts...) |
| 44 | if err != nil { |
| 45 | level.Warn(t.logger).Log("msg", "failed to get items from cache", "err", err) |
| 46 | } |
| 47 | return |
| 48 | } |
| 49 | |
| 50 | func (t *SpanlessTracingCache) GetMultiWithError(ctx context.Context, keys []string, opts ...Option) (result map[string][]byte, err error) { |
| 51 | var ( |
nothing calls this directly
no test coverage detected