From 814738c74e7dcf02dbcea676c857e690afd57d7c Mon Sep 17 00:00:00 2001 From: PhracturedBlue Date: Fri, 22 Sep 2023 16:32:24 -0700 Subject: [PATCH] set --run-missed default to True (#3330) --- snapshot/policy/scheduling_policy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshot/policy/scheduling_policy.go b/snapshot/policy/scheduling_policy.go index f32b6dcab..ba33e5dcf 100644 --- a/snapshot/policy/scheduling_policy.go +++ b/snapshot/policy/scheduling_policy.go @@ -75,7 +75,7 @@ type SchedulingPolicyDefinition struct { } // defaultRunMissed is the value for RunMissed. -const defaultRunMissed = false +const defaultRunMissed = true // Interval returns the snapshot interval or zero if not specified. func (p *SchedulingPolicy) Interval() time.Duration {