fix missing argument for Printf
parent
35d1ec7b78
commit
c4ed8df451
|
@ -72,7 +72,7 @@ func SetupServer(s *localkube.LocalkubeServer) {
|
||||||
if s.FeatureGates != "" {
|
if s.FeatureGates != "" {
|
||||||
err := config.DefaultFeatureGate.Set(s.FeatureGates)
|
err := config.DefaultFeatureGate.Set(s.FeatureGates)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("Error setting feature gates: %s")
|
fmt.Printf("Error setting feature gates: %s", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue