From 8819a4b6b4650b9f1b74a270368b2f693ab8f6a1 Mon Sep 17 00:00:00 2001 From: Ted Yu Date: Mon, 9 Sep 2019 15:52:51 -0700 Subject: [PATCH] Continue with remaining volumeAttached's in VerifyVolumesAreAttached --- pkg/volume/util/operationexecutor/operation_executor.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/volume/util/operationexecutor/operation_executor.go b/pkg/volume/util/operationexecutor/operation_executor.go index a7480f718d0..c0ca060036d 100644 --- a/pkg/volume/util/operationexecutor/operation_executor.go +++ b/pkg/volume/util/operationexecutor/operation_executor.go @@ -710,9 +710,8 @@ func (oe *operationExecutor) VerifyVolumesAreAttached( // If node doesn't support Bulk volume polling it is best to poll individually nodeError := oe.VerifyVolumesAreAttachedPerNode(nodeAttachedVolumes, node, actualStateOfWorld) if nodeError != nil { - klog.Errorf("BulkVerifyVolumes.VerifyVolumesAreAttached verifying volumes on node %q with %v", node, nodeError) + klog.Errorf("VerifyVolumesAreAttached failed for volumes %v, node %q with error %v", nodeAttachedVolumes, node, nodeError) } - break } }