File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ func (n *projectsNode) OnAdd(ctx context.Context) {
30
30
groupNode , err := newGroupNodeByID (groupID , n .param )
31
31
if err != nil {
32
32
fmt .Printf ("root group fetch fail: %v\n " , err )
33
+ fmt .Printf ("Please verify the group exists, is public or a token with sufficient permissions is set in the config files.\n " )
34
+ fmt .Printf ("Skipping group %v\n " , groupID )
35
+ return
33
36
}
34
37
inode := n .NewPersistentInode (
35
38
ctx ,
Original file line number Diff line number Diff line change @@ -55,6 +55,9 @@ func (n *usersNode) OnAdd(ctx context.Context) {
55
55
userNode , err := newUserNodeByID (userID , n .param )
56
56
if err != nil {
57
57
fmt .Printf ("user fetch fail: %v\n " , err )
58
+ fmt .Printf ("Please verify the user exists and token with sufficient permissions is set in the config files.\n " )
59
+ fmt .Printf ("Skipping user %v\n " , userID )
60
+ return
58
61
}
59
62
inode := n .NewPersistentInode (
60
63
ctx ,
You can’t perform that action at this time.
0 commit comments