From 400c8f71cf2d136716cdc6afc613b84271551a15 Mon Sep 17 00:00:00 2001 From: neogopher Date: Sun, 30 Oct 2022 11:48:01 +0530 Subject: [PATCH] docs: Correct the log message for pv controller to make it more accurately descriptive --- pkg/controller/volume/persistentvolume/pv_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/volume/persistentvolume/pv_controller.go b/pkg/controller/volume/persistentvolume/pv_controller.go index 08e4fd9c2de..0e747afc5da 100644 --- a/pkg/controller/volume/persistentvolume/pv_controller.go +++ b/pkg/controller/volume/persistentvolume/pv_controller.go @@ -728,7 +728,7 @@ func (ctrl *PersistentVolumeController) syncVolume(ctx context.Context, volume * // the user know. Don't overwrite existing Failed status! if volume.Status.Phase != v1.VolumeReleased && volume.Status.Phase != v1.VolumeFailed { // Also, log this only once: - klog.V(2).Infof("dynamically volume %q is released and it will be deleted", volume.Name) + klog.V(2).Infof("dynamically provisioned volume %q is released and it will be deleted", volume.Name) if volume, err = ctrl.updateVolumePhase(volume, v1.VolumeReleased, ""); err != nil { // Nothing was saved; we will fall back into the same condition // in the next call to this method