diff --git a/pkg/health/heartbeat/heartbeat.go b/pkg/health/heartbeat/heartbeat.go index 08c922880..4ff5b4400 100644 --- a/pkg/health/heartbeat/heartbeat.go +++ b/pkg/health/heartbeat/heartbeat.go @@ -185,7 +185,7 @@ func UpdateFullSnapshotLease(ctx context.Context, logger *logrus.Entry, fullSnap if err != nil { return err } - if rev >= fullSnapshot.LastRevision { + if rev > fullSnapshot.LastRevision { return nil } }