File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -611,7 +611,7 @@ func showVersion(ctx *cli.Context) {
611
611
}
612
612
613
613
func createAppProfile (ctx * cli.Context ) {
614
- argCheck (2 , ctx )
614
+ argCheck (1 , ctx )
615
615
616
616
tenant := ctx .String ("tenant" )
617
617
prof := ctx .Args ()[0 ]
@@ -629,7 +629,7 @@ func createAppProfile(ctx *cli.Context) {
629
629
}
630
630
631
631
func updateAppProfile (ctx * cli.Context ) {
632
- argCheck (2 , ctx )
632
+ argCheck (1 , ctx )
633
633
634
634
tenant := ctx .String ("tenant" )
635
635
prof := ctx .Args ()[0 ]
@@ -647,7 +647,7 @@ func updateAppProfile(ctx *cli.Context) {
647
647
}
648
648
649
649
func deleteAppProfile (ctx * cli.Context ) {
650
- argCheck (2 , ctx )
650
+ argCheck (1 , ctx )
651
651
652
652
tenant := ctx .String ("tenant" )
653
653
prof := ctx .Args ()[0 ]
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ func (ac *APIController) AppProfileDelete(prof *contivModel.AppProfile) error {
303
303
}
304
304
}
305
305
306
- modeldb .AddLinkSet (& tenant .LinkSets .AppProfiles , prof )
306
+ modeldb .RemoveLinkSet (& tenant .LinkSets .AppProfiles , prof )
307
307
tenant .Write ()
308
308
return nil
309
309
}
You can’t perform that action at this time.
0 commit comments