docker volume plugin: migrate DaemonWait mount option from time.Duration type to fs.Duration
This commit is contained in:
parent
8b9325051e
commit
63ce0c9bc5
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ func getMountOption(mntOpt *mountlib.Options, opt rc.Params, key string) (ok boo
|
|||
case "network-mode":
|
||||
mntOpt.NetworkMode, err = opt.GetBool(key)
|
||||
case "daemon-wait":
|
||||
mntOpt.DaemonWait, err = opt.GetDuration(key)
|
||||
mntOpt.DaemonWait, err = opt.GetFsDuration(key)
|
||||
case "devname":
|
||||
mntOpt.DeviceName, err = opt.GetString(key)
|
||||
case "direct-io":
|
||||
|
|
Loading…
Add table
Reference in a new issue