Merge pull request #70408 from idealhack/fix-golint-pkg-volume-util

Fix golint error for `pkg/volume/util/resize_util.go`
pull/58/head
k8s-ci-robot 2018-11-01 11:11:22 -07:00 committed by GitHub
commit 133f662610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import (
)
var (
knownResizeConditions map[v1.PersistentVolumeClaimConditionType]bool = map[v1.PersistentVolumeClaimConditionType]bool{
knownResizeConditions = map[v1.PersistentVolumeClaimConditionType]bool{
v1.PersistentVolumeClaimFileSystemResizePending: true,
v1.PersistentVolumeClaimResizing: true,
}