Skip to content

Commit

Permalink
Merge pull request #36455 from dims/fix-issue-36454
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

Fix build break

Problem introduced in #31996

Fixes #36454
  • Loading branch information
Kubernetes Submit Queue committed Nov 9, 2016
2 parents 5d4d596 + cf9e950 commit 06fa13e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/kubelet/cm/container_manager_unsupported.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ func (cm *unsupportedContainerManager) NewPodContainerManager() PodContainerMana
return &unsupportedPodContainerManager{}
}

func NewContainerManager(_ mount.Interface, _ cadvisor.Interface, _ NodeConfig) (ContainerManager, error) {
func NewContainerManager(_ mount.Interface, _ cadvisor.Interface, _ NodeConfig, failSwapOn bool) (ContainerManager, error) {
return &unsupportedContainerManager{}, nil
}
2 changes: 1 addition & 1 deletion pkg/kubelet/cm/container_manager_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ func (cm *containerManagerImpl) Start(_ *api.Node) error {
return nil
}

func NewContainerManager(mountUtil mount.Interface, cadvisorInterface cadvisor.Interface, nodeConfig NodeConfig) (ContainerManager, error) {
func NewContainerManager(mountUtil mount.Interface, cadvisorInterface cadvisor.Interface, nodeConfig NodeConfig, failSwapOn bool) (ContainerManager, error) {
return &containerManagerImpl{}, nil
}

0 comments on commit 06fa13e

Please sign in to comment.