From 06d0ffae82788e936947e67e7030dd16a797b347 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Fri, 11 Sep 2020 16:14:14 +0200 Subject: [PATCH] Fix volume error message Signed-off-by: Guillaume Tardif --- aci/volumes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aci/volumes.go b/aci/volumes.go index 46d01c182..8fa23144d 100644 --- a/aci/volumes.go +++ b/aci/volumes.go @@ -169,7 +169,7 @@ func errorEvent(resource string) progress.Event { func (cs *aciVolumeService) Delete(ctx context.Context, id string, options interface{}) error { tokens := strings.Split(id, "/") if len(tokens) != 2 { - return errors.New("wrong format for volume ID : should be storageaccount@fileshare") + return errors.New("invalid format for volume ID, expected storageaccount/fileshare") } storageAccount := tokens[0] fileshare := tokens[1]