From 1c35e3c275432e7a3f3d86ecdbd19332c920badb Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Thu, 17 Nov 2016 08:00:50 +0100 Subject: [PATCH] Add missing nodeName parameter to log call --- pkg/volume/util/operationexecutor/operation_executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/volume/util/operationexecutor/operation_executor.go b/pkg/volume/util/operationexecutor/operation_executor.go index 15c425cbfd8..a85e61a6fbb 100644 --- a/pkg/volume/util/operationexecutor/operation_executor.go +++ b/pkg/volume/util/operationexecutor/operation_executor.go @@ -561,7 +561,7 @@ func (oe *operationExecutor) generateVolumesAreAttachedFunc( if !check { actualStateOfWorld.MarkVolumeAsDetached(volumeSpecMap[spec], nodeName) glog.V(1).Infof("VerifyVolumesAreAttached determined volume %q (spec.Name: %q) is no longer attached to node %q, therefore it was marked as detached.", - volumeSpecMap[spec], spec.Name()) + volumeSpecMap[spec], spec.Name(), nodeName) } } }