Method
GetBlocks
(ctx context.Context, userID string, minT, maxT int64, matchers []*labels.Matcher)
Source from the content-addressed store, hash-verified
| 2649 | } |
| 2650 | |
| 2651 | func (m *blocksFinderMock) GetBlocks(ctx context.Context, userID string, minT, maxT int64, matchers []*labels.Matcher) (bucketindex.Blocks, map[ulid.ULID]*bucketindex.BlockDeletionMark, error) { |
| 2652 | args := m.Called(ctx, userID, minT, maxT, matchers) |
| 2653 | return args.Get(0).(bucketindex.Blocks), args.Get(1).(map[ulid.ULID]*bucketindex.BlockDeletionMark), args.Error(2) |
| 2654 | } |
| 2655 | |
| 2656 | type storeGatewayClientMock struct { |
| 2657 | remoteAddr string |
Callers
nothing calls this directly
Tested by
no test coverage detected