print out filer address

This commit is contained in:
Chris Lu 2021-01-12 09:43:13 -08:00
parent 1496166194
commit e4cb2a5c42

View File

@ -6,6 +6,7 @@ import (
"log"
"os"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs-csi-driver/pkg/driver"
)
@ -30,6 +31,8 @@ func main() {
os.Exit(0)
}
glog.Infof("connect to filer %s", *filer)
drv := driver.NewSeaweedFsDriver(*filer, *nodeID, *endpoint)
drv.ConcurrentWriters = *concurrentWriters
drv.Run()