From 7bbd2ea2842147f5e9a1c05e721379f9eb99708d Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Mon, 8 Nov 2021 15:30:09 +0530 Subject: [PATCH] rbd: use small case of error message the error message should not start with the capital letter changing the case as per the standard. Signed-off-by: Madhu Rajanna --- internal/rbd/nodeserver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/rbd/nodeserver.go b/internal/rbd/nodeserver.go index a35a289664c..0425278f72c 100644 --- a/internal/rbd/nodeserver.go +++ b/internal/rbd/nodeserver.go @@ -440,7 +440,7 @@ func (ns *NodeServer) stageTransaction( ok, err = resizer.NeedResize(devicePath, stagingTargetPath) if err != nil { return transaction, status.Errorf(codes.Internal, - "Need resize check failed on devicePath %s and staingPath %s, error: %v", + "need resize check failed on devicePath %s and staingPath %s, error: %v", devicePath, stagingTargetPath, err)