Commit 5eefdb92 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #35817 from luxas/fix_crossbuild

Automatic merge from submit-queue Fix cadvisor_unsupported and the crossbuild Resolves a bug in the `cadvisor_unsupported.go` code. Fixes https://github.com/kubernetes/kubernetes/issues/35735 Introduced by: https://github.com/kubernetes/kubernetes/pull/35136 We should consider to cherrypick this as #35136 also was cherrypicked cc @kubernetes/sig-testing @vishh @dashpole @jessfraz ```release-note Fix cadvisor_unsupported and the crossbuild ```
parents 58457daf 00fda679
......@@ -31,7 +31,7 @@ type cadvisorUnsupported struct {
var _ Interface = new(cadvisorUnsupported)
func New(port uint, runtime string) (Interface, error) {
func New(port uint, runtime string, rootPath string) (Interface, error) {
return &cadvisorUnsupported{}, nil
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment