mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 21:17:23 +00:00
Since replenishmentControllers was generated by ctx.InformerFactory, remove "replenishmentControllers []cache.Controller" which is never used.
This commit is contained in:
parent
d7e56d5330
commit
efdf99d09a
@ -79,8 +79,6 @@ type ResourceQuotaController struct {
|
|||||||
resyncPeriod controller.ResyncPeriodFunc
|
resyncPeriod controller.ResyncPeriodFunc
|
||||||
// knows how to calculate usage
|
// knows how to calculate usage
|
||||||
registry quota.Registry
|
registry quota.Registry
|
||||||
// controllers monitoring to notify for replenishment
|
|
||||||
replenishmentControllers []cache.Controller
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewResourceQuotaController(options *ResourceQuotaControllerOptions) *ResourceQuotaController {
|
func NewResourceQuotaController(options *ResourceQuotaControllerOptions) *ResourceQuotaController {
|
||||||
@ -93,7 +91,6 @@ func NewResourceQuotaController(options *ResourceQuotaControllerOptions) *Resour
|
|||||||
missingUsageQueue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "resourcequota_priority"),
|
missingUsageQueue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "resourcequota_priority"),
|
||||||
resyncPeriod: options.ResyncPeriod,
|
resyncPeriod: options.ResyncPeriod,
|
||||||
registry: options.Registry,
|
registry: options.Registry,
|
||||||
replenishmentControllers: []cache.Controller{},
|
|
||||||
}
|
}
|
||||||
// set the synchronization handler
|
// set the synchronization handler
|
||||||
rq.syncHandler = rq.syncResourceQuotaFromKey
|
rq.syncHandler = rq.syncResourceQuotaFromKey
|
||||||
@ -238,11 +235,6 @@ func (rq *ResourceQuotaController) Run(workers int, stopCh <-chan struct{}) {
|
|||||||
glog.Infof("Starting resource quota controller")
|
glog.Infof("Starting resource quota controller")
|
||||||
defer glog.Infof("Shutting down resource quota controller")
|
defer glog.Infof("Shutting down resource quota controller")
|
||||||
|
|
||||||
// the controllers that replenish other resources to respond rapidly to state changes
|
|
||||||
for _, replenishmentController := range rq.replenishmentControllers {
|
|
||||||
go replenishmentController.Run(stopCh)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !controller.WaitForCacheSync("resource quota", stopCh, rq.informerSyncedFuncs...) {
|
if !controller.WaitForCacheSync("resource quota", stopCh, rq.informerSyncedFuncs...) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user