diff --git a/fs/projects.go b/fs/projects.go index 777efe8..3bdccf6 100644 --- a/fs/projects.go +++ b/fs/projects.go @@ -30,6 +30,9 @@ func (n *projectsNode) OnAdd(ctx context.Context) { groupNode, err := newGroupNodeByID(groupID, n.param) if err != nil { fmt.Printf("root group fetch fail: %v\n", err) + fmt.Printf("Please verify the group exists, is public or a token with sufficient permissions is set in the config files.\n") + fmt.Printf("Skipping group %v\n", groupID) + return } inode := n.NewPersistentInode( ctx, diff --git a/fs/users.go b/fs/users.go index 41aed95..6094c68 100644 --- a/fs/users.go +++ b/fs/users.go @@ -55,6 +55,9 @@ func (n *usersNode) OnAdd(ctx context.Context) { userNode, err := newUserNodeByID(userID, n.param) if err != nil { fmt.Printf("user fetch fail: %v\n", err) + fmt.Printf("Please verify the user exists and token with sufficient permissions is set in the config files.\n") + fmt.Printf("Skipping user %v\n", userID) + return } inode := n.NewPersistentInode( ctx,