diff --git a/internal/querycoordv2/checkers/controller.go b/internal/querycoordv2/checkers/controller.go index 4f742b17f0..d96372d07a 100644 --- a/internal/querycoordv2/checkers/controller.go +++ b/internal/querycoordv2/checkers/controller.go @@ -107,7 +107,7 @@ func getCheckerInterval(checker utils.CheckerType) time.Duration { case utils.IndexChecker: return Params.QueryCoordCfg.IndexCheckInterval.GetAsDuration(time.Millisecond) case utils.LeaderChecker: - return Params.QueryCoordCfg.LeaderViewUpdateInterval.GetAsDuration(time.Millisecond) + return Params.QueryCoordCfg.LeaderViewUpdateInterval.GetAsDuration(time.Second) default: return Params.QueryCoordCfg.CheckInterval.GetAsDuration(time.Millisecond) }