From c68690c6401afdc1da99264ed3d1dadd64a1f9ad Mon Sep 17 00:00:00 2001 From: mattjmcnaughton Date: Sat, 18 May 2019 11:30:47 -0400 Subject: [PATCH] Standardize housekeeping capitalization Previously, the code base had both `housekeeping` and `houseKeeping`, which made case sensitive search in vim difficult. Standardize on `housekeeping`, which was by far the most popular. --- pkg/kubelet/kubelet.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index 2ac874cf391..fef9a217ab9 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -1841,7 +1841,7 @@ func (kl *Kubelet) syncLoop(updates <-chan kubetypes.PodUpdate, handler SyncHand // 1. configCh: a channel to read config events from // 2. handler: the SyncHandler to dispatch pods to // 3. syncCh: a channel to read periodic sync events from -// 4. houseKeepingCh: a channel to read housekeeping events from +// 4. housekeepingCh: a channel to read housekeeping events from // 5. plegCh: a channel to read PLEG updates from // // Events are also read from the kubelet liveness manager's update channel. @@ -1863,7 +1863,7 @@ func (kl *Kubelet) syncLoop(updates <-chan kubetypes.PodUpdate, handler SyncHand // handler callback for the event type // * plegCh: update the runtime cache; sync pod // * syncCh: sync all pods waiting for sync -// * houseKeepingCh: trigger cleanup of pods +// * housekeepingCh: trigger cleanup of pods // * liveness manager: sync pods that have failed or in which one or more // containers have failed liveness checks func (kl *Kubelet) syncLoopIteration(configCh <-chan kubetypes.PodUpdate, handler SyncHandler,