Browse Source

chore: fix some function names

Signed-off-by: shandongzhejiang <shandongzhejiang@icloud.com>
pull/14700/head
shandongzhejiang 3 months ago
parent
commit
b2712ff284
  1. 2
      tsdb/agent/db.go
  2. 2
      tsdb/chunks/head_chunks_test.go

2
tsdb/agent/db.go

@ -1118,7 +1118,7 @@ func (a *appender) logSeries() error {
return nil
}
// mintTs returns the minimum timestamp that a sample can have
// minValidTime returns the minimum timestamp that a sample can have
// and is needed for preventing underflow.
func (a *appender) minValidTime(lastTs int64) int64 {
if lastTs < math.MinInt64+a.opts.OutOfOrderTimeWindow {

2
tsdb/chunks/head_chunks_test.go

@ -408,7 +408,7 @@ func TestChunkDiskMapper_Truncate_WriteQueueRaceCondition(t *testing.T) {
wg.Wait()
}
// TestHeadReadWriter_TruncateAfterIterateChunksError tests for
// TestHeadReadWriter_TruncateAfterFailedIterateChunks tests for
// https://github.com/prometheus/prometheus/issues/7753
func TestHeadReadWriter_TruncateAfterFailedIterateChunks(t *testing.T) {
hrw := createChunkDiskMapper(t, "")

Loading…
Cancel
Save