Merge pull request #113947 from mowangdk/chore/change_adcontroller_log_level

Lower volume attached touch log level
This commit is contained in:
Kubernetes Prow Robot 2022-12-12 17:41:51 -08:00 committed by GitHub
commit 741bd5c382
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -323,7 +323,7 @@ func (rc *reconciler) attachDesiredVolumes() {
attachState := rc.actualStateOfWorld.GetAttachState(volumeToAttach.VolumeName, volumeToAttach.NodeName)
if attachState == cache.AttachStateAttached {
// Volume/Node exists, touch it to reset detachRequestedTime
klog.V(5).InfoS("Volume attached--touching", "volume", volumeToAttach)
klog.V(10).InfoS("Volume attached--touching", "volume", volumeToAttach)
rc.actualStateOfWorld.ResetDetachRequestTime(volumeToAttach.VolumeName, volumeToAttach.NodeName)
continue
}