mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
volume/local.New(): don't register volume before we're done
Loading options may fail, in which case we don't have to add the volume to the list. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
eecf7a0840
commit
b56fc2d0f8
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,6 @@ func New(scope string, rootIdentity idtools.Identity) (*Root, error) {
|
|||
path: r.DataPath(name),
|
||||
quotaCtl: r.quotaCtl,
|
||||
}
|
||||
r.volumes[name] = v
|
||||
if b, err := os.ReadFile(filepath.Join(r.path, name, "opts.json")); err == nil {
|
||||
opts := optsConfig{}
|
||||
if err := json.Unmarshal(b, &opts); err != nil {
|
||||
|
@ -93,6 +92,7 @@ func New(scope string, rootIdentity idtools.Identity) (*Root, error) {
|
|||
// unclean shutdown). This is a no-op on windows
|
||||
unmount(v.path)
|
||||
}
|
||||
r.volumes[name] = v
|
||||
}
|
||||
|
||||
return r, nil
|
||||
|
|
Loading…
Reference in a new issue