Browse Source

Updates daemon's remove link method to use more verbose error output.

Signed-off-by: Aaron Hnatiw <aaron@griddio.com>
Aaron Hnatiw 6 years ago
parent
commit
b6d2d12e42
1 changed files with 2 additions and 2 deletions
  1. 2 2
      daemon/delete.go

+ 2 - 2
daemon/delete.go

@@ -54,13 +54,13 @@ func (daemon *Daemon) rmLink(container *container.Container, name string) error
 	}
 	parent, n := path.Split(name)
 	if parent == "/" {
-		return fmt.Errorf("Conflict, cannot remove the default name of the container")
+		return fmt.Errorf("Conflict, cannot remove the default link name of the container")
 	}
 
 	parent = strings.TrimSuffix(parent, "/")
 	pe, err := daemon.containersReplica.Snapshot().GetID(parent)
 	if err != nil {
-		return fmt.Errorf("Cannot get parent %s for name %s", parent, name)
+		return fmt.Errorf("Cannot get parent %s for link name %s", parent, name)
 	}
 
 	daemon.releaseName(name)