Merge pull request #29365 from lixiaobing10051267/masterLen

Automatic merge from submit-queue

len(vmList) output format not correct

len(vmList) output format not correct, not "%s", is "%d".
This commit is contained in:
k8s-merge-robot 2016-07-27 02:41:58 -07:00 committed by GitHub
commit 5b7f7e7bd3

View File

@ -311,7 +311,7 @@ func (i *Instances) List(filter string) ([]string, error) {
return nil, err
}
glog.V(3).Infof("Found %s instances matching %s: %s",
glog.V(3).Infof("Found %d instances matching %s: %s",
len(vmList), filter, vmList)
return vmList, nil