mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-11 22:07:27 -08:00
chore: fix some function names
Signed-off-by: shandongzhejiang <shandongzhejiang@icloud.com>
This commit is contained in:
parent
1435c8ae4a
commit
b2712ff284
|
@ -1118,7 +1118,7 @@ func (a *appender) logSeries() error {
|
||||||
return nil
|
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.
|
// and is needed for preventing underflow.
|
||||||
func (a *appender) minValidTime(lastTs int64) int64 {
|
func (a *appender) minValidTime(lastTs int64) int64 {
|
||||||
if lastTs < math.MinInt64+a.opts.OutOfOrderTimeWindow {
|
if lastTs < math.MinInt64+a.opts.OutOfOrderTimeWindow {
|
||||||
|
|
|
@ -408,7 +408,7 @@ func TestChunkDiskMapper_Truncate_WriteQueueRaceCondition(t *testing.T) {
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
// TestHeadReadWriter_TruncateAfterIterateChunksError tests for
|
// TestHeadReadWriter_TruncateAfterFailedIterateChunks tests for
|
||||||
// https://github.com/prometheus/prometheus/issues/7753
|
// https://github.com/prometheus/prometheus/issues/7753
|
||||||
func TestHeadReadWriter_TruncateAfterFailedIterateChunks(t *testing.T) {
|
func TestHeadReadWriter_TruncateAfterFailedIterateChunks(t *testing.T) {
|
||||||
hrw := createChunkDiskMapper(t, "")
|
hrw := createChunkDiskMapper(t, "")
|
||||||
|
|
Loading…
Reference in a new issue