From 6a03bbc2c822d35a481f07ccb347ae553711e847 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 28 May 2020 01:57:49 -0700 Subject: [PATCH] pkg/cvo/sync_worker: Drop unused 'reconciling' from SyncWorker The property landed with SyncWorker in 961873d66a (sync: Do config syncing in the background, 2019-01-11, #82), but has never been used. --- pkg/cvo/sync_worker.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/cvo/sync_worker.go b/pkg/cvo/sync_worker.go index d03ea2d929..70de6761f7 100644 --- a/pkg/cvo/sync_worker.go +++ b/pkg/cvo/sync_worker.go @@ -130,7 +130,6 @@ type SyncWorker struct { retriever PayloadRetriever builder payload.ResourceBuilder preconditions precondition.List - reconciling bool // minimumReconcileInterval is the minimum time between reconcile attempts, and is // used to define the maximum backoff interval when syncOnce() returns an error.