Skip to content

Commit 00bab4f

Browse files
structlogging: hot ranges log modify interval loop check to be 1m
It seems like the interval loop checker for hot ranges was set to 1s for testing, and accidentally committed. This change reverts the original change. Fixes: #138767 Epic: CRDB-43150 Release note: None
1 parent fd30157 commit 00bab4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/server/structlogging/hot_ranges_log.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ReportTopHottestRanges int32 = 5
2929

3030
// CheckInterval is the interval at which the system checks
3131
// whether or not to log the hot ranges.
32-
var CheckInterval = time.Second
32+
var CheckInterval = time.Minute
3333

3434
// TestLoopChannel triggers the hot ranges logging loop to start again.
3535
// It's useful in the context of a test, where we don't want to wait

0 commit comments

Comments
 (0)