Skip to content

Commit f88066f

Browse files
committed
ignore vfs from warning
Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <[email protected]> (github: jfrazelle)
1 parent 640e0fc commit f88066f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daemon/graphdriver/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func New(root string, options []string) (driver Driver, err error) {
148148
func checkPriorDriver(name, root string) {
149149
priorDrivers := []string{}
150150
for prior := range drivers {
151-
if prior != name {
151+
if prior != name && prior != "vfs" {
152152
if _, err := os.Stat(path.Join(root, prior)); err == nil {
153153
priorDrivers = append(priorDrivers, prior)
154154
}

0 commit comments

Comments
 (0)