implements tempodb.Reader interface
| 41 | |
| 42 | // implements tempodb.Reader interface |
| 43 | type mockReader struct { |
| 44 | metas []*backend.BlockMeta |
| 45 | tenants []string |
| 46 | } |
| 47 | |
| 48 | func (m *mockReader) SearchTags(context.Context, *backend.BlockMeta, *tempopb.SearchTagsBlockRequest, common.SearchOptions) (*tempopb.SearchTagsV2Response, error) { |
| 49 | return nil, nil |
nothing calls this directly
no outgoing calls
no test coverage detected