mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
no need to save state to disk here
State will be saved on the following operation once the container is properly registered on the daemon. Signed-off-by: Fabio Kung <fabio.kung@gmail.com>
This commit is contained in:
parent
2ed6f9257a
commit
03aa24721c
1 changed files with 0 additions and 4 deletions
|
@ -30,10 +30,6 @@ func (daemon *Daemon) registerName(container *container.Container) error {
|
|||
return err
|
||||
}
|
||||
container.Name = name
|
||||
|
||||
if err := container.ToDiskLocking(); err != nil {
|
||||
logrus.Errorf("Error saving container name to disk: %v", err)
|
||||
}
|
||||
}
|
||||
return daemon.nameIndex.Reserve(container.Name, container.ID)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue