mirror of
https://github.com/docker/compose.git
synced 2026-08-30 05:29:30 +00:00
Fix volume error message
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
This commit is contained in:
parent
57ded74aee
commit
06d0ffae82
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue