From: garciadeblas Date: Wed, 15 Jun 2022 09:13:20 +0000 (+0200) Subject: Fix ns-heal and vnf-heal commands to anchor to cli_osm X-Git-Tag: v12.0.0rc1~7 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fosmclient.git;a=commitdiff_plain;h=3984c7f63e1a92853c87175ef6d1d72b38d3f0ac Fix ns-heal and vnf-heal commands to anchor to cli_osm Change-Id: I64bb2c56a0cad4fc0c6832874bdc1da38cfb6573 Signed-off-by: garciadeblas --- diff --git a/osmclient/scripts/osm.py b/osmclient/scripts/osm.py index a196139..aedf3c7 100755 --- a/osmclient/scripts/osm.py +++ b/osmclient/scripts/osm.py @@ -5709,7 +5709,7 @@ def process_vnf_heal_params(ctx, param, value): process_common_heal_params(ctx, param, value) -@click.command( +@cli_osm.command( name="ns-heal", short_help="heals (recreates) VNFs or VDUs of a NS instance" ) @click.argument("ns_name") @@ -5785,7 +5785,7 @@ def ns_heal( ctx.obj.ns.heal(ns_name, heal_dict, wait, timeout) -@click.command( +@cli_osm.command( name="vnf-heal", short_help="heals (recreates) a VNF instance or the VDUs of a VNF instance", )