Commit 5b7f7e7b authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

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".
parents 3a29863d 0e8dd302
...@@ -311,7 +311,7 @@ func (i *Instances) List(filter string) ([]string, error) { ...@@ -311,7 +311,7 @@ func (i *Instances) List(filter string) ([]string, error) {
return nil, err 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) len(vmList), filter, vmList)
return vmList, nil return vmList, 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