Commit 4c413ae9 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #54117 from nikhiljindal/removeLogs

Automatic merge from submit-queue (batch tested with PRs 53965, 54117, 53685). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Fixing a glog message to not print managed zones when it is empty ```release-note NONE ```
parents b958430e 4303611b
......@@ -449,7 +449,7 @@ func CreateGCECloud(config *CloudConfig) (*GCECloud, error) {
return nil, err
}
}
if len(config.ManagedZones) != 1 {
if len(config.ManagedZones) > 1 {
glog.Infof("managing multiple zones: %v", config.ManagedZones)
}
......
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