Remove unused argument to NodeController.Run

This commit is contained in:
gmarek
2016-08-30 14:24:56 +02:00
parent 177a6840f8
commit ea2d19f5d7
3 changed files with 3 additions and 3 deletions

View File

@@ -383,7 +383,7 @@ func NewNodeControllerFromClient(
}
// Run starts an asynchronous loop that monitors the status of cluster nodes.
func (nc *NodeController) Run(period time.Duration) {
func (nc *NodeController) Run() {
go nc.nodeController.Run(wait.NeverStop)
go nc.podController.Run(wait.NeverStop)
go nc.daemonSetController.Run(wait.NeverStop)