From ae81ad1ac74c190d3eeb27fe1ee315e3296820b9 Mon Sep 17 00:00:00 2001 From: Massaki Archambault Date: Wed, 3 Mar 2021 00:36:11 -0500 Subject: [PATCH] fix incorrect call to Server.Wait() instead of Server.Serve() --- fs/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/root.go b/fs/root.go index 8277bbe..2d2b713 100644 --- a/fs/root.go +++ b/fs/root.go @@ -86,7 +86,7 @@ func Start(mountpoint string, rootGroupIds []int, userIds []int, param *FSParam, if err != nil { return fmt.Errorf("mount failed: %v", err) } - server.Wait() + server.Serve() return nil }