File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ func WithLabelMatchers(matchers ...*labels.Matcher) MetricsOption {
38
38
}
39
39
}
40
40
41
- // WithWaitMissingMetrics is an option to wait whenever an expected metric is missing. If this
41
+ // WaitMissingMetrics is an option to wait whenever an expected metric is missing. If this
42
42
// option is not enabled, will return error on missing metrics.
43
43
func WaitMissingMetrics (opts * MetricsOptions ) {
44
44
opts .WaitMissingMetrics = true
45
45
}
46
46
47
- // SkipWaitMissingMetrics is an option to skip/ignore whenever an expected metric is missing.
47
+ // SkipMissingMetrics is an option to skip/ignore whenever an expected metric is missing.
48
48
func SkipMissingMetrics (opts * MetricsOptions ) {
49
49
opts .SkipMissingMetrics = true
50
50
}
Original file line number Diff line number Diff line change @@ -448,7 +448,7 @@ func (u *userTSDB) blocksToDelete(blocks []*tsdb.Block) map[ulid.ULID]struct{} {
448
448
return result
449
449
}
450
450
451
- // updateCachedShipperBlocks reads the shipper meta file and updates the cached shipped blocks.
451
+ // updateCachedShippedBlocks reads the shipper meta file and updates the cached shipped blocks.
452
452
func (u * userTSDB ) updateCachedShippedBlocks () error {
453
453
shipperMeta , err := shipper .ReadMetaFile (u .shipperMetadataFilePath )
454
454
if os .IsNotExist (err ) || os .IsNotExist (errors .Cause (err )) {
You can’t perform that action at this time.
0 commit comments