diff --git a/cmd/csi-powerstore/main.go b/cmd/csi-powerstore/main.go index 1cbc5e21..97ef3c09 100644 --- a/cmd/csi-powerstore/main.go +++ b/cmd/csi-powerstore/main.go @@ -154,6 +154,10 @@ func main() { if err != nil { log.Fatalf("couldn't initialize arrays in node service: %s", err.Error()) } + err = nodeService.Init() + if err != nil { + log.Fatalf("couldn't create node service: %s", err.Error()) + } } })