(ctx context.Context, key string, val []byte, exp time.Duration)
| 223 | } |
| 224 | |
| 225 | func (s *contextRecorderStorage) SetWithContext(ctx context.Context, key string, val []byte, exp time.Duration) error { |
| 226 | s.sets = append(s.sets, contextRecordFrom(ctx, key)) |
| 227 | return s.failingCacheStorage.SetWithContext(ctx, key, val, exp) |
| 228 | } |
| 229 | |
| 230 | func (s *contextRecorderStorage) DeleteWithContext(ctx context.Context, key string) error { |
| 231 | s.deletes = append(s.deletes, contextRecordFrom(ctx, key)) |
nothing calls this directly
no test coverage detected