Skip to content

Commit 11d34ce

Browse files
author
Joji Mekkatt
committed
Fix app profile cli and delete
1 parent ee7bb9c commit 11d34ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

netctl/netctl.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ func showVersion(ctx *cli.Context) {
611611
}
612612

613613
func createAppProfile(ctx *cli.Context) {
614-
argCheck(2, ctx)
614+
argCheck(1, ctx)
615615

616616
tenant := ctx.String("tenant")
617617
prof := ctx.Args()[0]
@@ -629,7 +629,7 @@ func createAppProfile(ctx *cli.Context) {
629629
}
630630

631631
func updateAppProfile(ctx *cli.Context) {
632-
argCheck(2, ctx)
632+
argCheck(1, ctx)
633633

634634
tenant := ctx.String("tenant")
635635
prof := ctx.Args()[0]
@@ -647,7 +647,7 @@ func updateAppProfile(ctx *cli.Context) {
647647
}
648648

649649
func deleteAppProfile(ctx *cli.Context) {
650-
argCheck(2, ctx)
650+
argCheck(1, ctx)
651651

652652
tenant := ctx.String("tenant")
653653
prof := ctx.Args()[0]

netmaster/objApi/apiController.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ func (ac *APIController) AppProfileDelete(prof *contivModel.AppProfile) error {
303303
}
304304
}
305305

306-
modeldb.AddLinkSet(&tenant.LinkSets.AppProfiles, prof)
306+
modeldb.RemoveLinkSet(&tenant.LinkSets.AppProfiles, prof)
307307
tenant.Write()
308308
return nil
309309
}

0 commit comments

Comments
 (0)