Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 1dc0c4c

Browse files
committed
fix warning message
close #1536 Signed-off-by: Nicolas De Loof <[email protected]>
1 parent 11c36bd commit 1dc0c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

local/compose/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ func (s *composeService) ensureNetworkDown(ctx context.Context, networkID string
949949

950950
if err := s.apiClient.NetworkRemove(ctx, networkID); err != nil {
951951
w.Event(progress.ErrorEvent(eventName))
952-
return errors.Wrapf(err, fmt.Sprintf("failed to create network %s", networkID))
952+
return errors.Wrapf(err, fmt.Sprintf("failed to remove network %s", networkID))
953953
}
954954

955955
w.Event(progress.RemovedEvent(eventName))

0 commit comments

Comments
 (0)