From 081d0e82dfa863246d1a21475d54d4683b3eb761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Van=C3=AD=C4=8Dek?= Date: Fri, 26 May 2023 17:47:18 +0200 Subject: [PATCH] VolumeRT missing init. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d04f4ee..d7042d4 100644 --- a/main.go +++ b/main.go @@ -376,7 +376,7 @@ func main() { return nil }) - d := &ofsDriver{volumedb: db, defEnv: defEnv} + d := &ofsDriver{volumedb: db, volumeRt: make(map[string]*ofsVolumeRt), defEnv: defEnv} h := volume.NewHandler(d) u, _ := user.Lookup("root") gid, _ := strconv.Atoi(u.Gid)