Explorar el Código

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

Signed-off-by: Aaron Hnatiw <aaron@griddio.com>
Aaron Hnatiw hace 6 años
padre
commit
b6d2d12e42
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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)