Skip to content

Commit

Permalink
rebase on main
Browse files Browse the repository at this point in the history
Signed-off-by: Mindaugas Niaura <[email protected]>
  • Loading branch information
niaurys committed Oct 1, 2024
1 parent a659d10 commit 0aeeee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/store/storepb/testutil/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ type TestClient struct {
Shardable bool
WithoutReplicaLabelsEnabled bool
IsLocalStore bool
StoreTSDBInfos []*infopb.TSDBInfo
StoreTSDBInfos []infopb.TSDBInfo
StoreFilterNotMatches bool
}

func (c TestClient) LabelSets() []labels.Labels { return c.ExtLset }
func (c TestClient) TimeRange() (mint, maxt int64) { return c.MinTime, c.MaxTime }
func (c TestClient) TSDBInfos() []*infopb.TSDBInfo { return c.StoreTSDBInfos }
func (c TestClient) TSDBInfos() []infopb.TSDBInfo { return c.StoreTSDBInfos }
func (c TestClient) SupportsSharding() bool { return c.Shardable }
func (c TestClient) SupportsWithoutReplicaLabels() bool { return c.WithoutReplicaLabelsEnabled }
func (c TestClient) String() string { return c.Name }
Expand Down

0 comments on commit 0aeeee6

Please sign in to comment.