Merge pull request #72009 from andyzhangx/automated-cherry-pick-of-#71990-upstream-release-1.13

Automated cherry pick of #71990: fix kubelet log flushing issue in azure disk
pull/58/head
Kubernetes Prow Robot 2019-01-04 16:48:50 -08:00 committed by GitHub
commit f2806ab3a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ func getMaxDataDiskCount(instanceType string, sizeList *[]compute.VirtualMachine
continue continue
} }
if strings.ToUpper(*size.Name) == vmsize { if strings.ToUpper(*size.Name) == vmsize {
klog.V(2).Infof("got a matching size in getMaxDataDiskCount, Name: %s, MaxDataDiskCount: %d", *size.Name, *size.MaxDataDiskCount) klog.V(12).Infof("got a matching size in getMaxDataDiskCount, Name: %s, MaxDataDiskCount: %d", *size.Name, *size.MaxDataDiskCount)
return int64(*size.MaxDataDiskCount) return int64(*size.MaxDataDiskCount)
} }
} }