This commit is contained in:
Victor Vieux 2013-10-30 11:24:50 -07:00
Родитель b2503a72f1
Коммит 8fa6e2b103
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -355,6 +355,9 @@ func (runtime *Runtime) Create(config *Config, name string) (*Container, []strin
// Set the enitity in the graph using the default name specified
if _, err := runtime.containerGraph.Set(name, id); err != nil {
if strings.HasSuffix(err.Error(), "name are not unique") {
return nil, nil, fmt.Errorf("Conflict, %s already exists.", name)
}
return nil, nil, err
}