From: tierno Date: Fri, 30 Aug 2019 07:24:06 +0000 (+0200) Subject: Merge "Bug 820 fix - Unable to update NST via CLI" X-Git-Tag: v6.0.2rc1~2 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=771907b5b7087df80e51d494b0c77263a62f47da;hp=1f3e889846ff574daf98fc699d81279f5f302e71;p=osm%2Fosmclient.git Merge "Bug 820 fix - Unable to update NST via CLI" --- diff --git a/osmclient/sol005/nst.py b/osmclient/sol005/nst.py index b7c67be..ca62235 100644 --- a/osmclient/sol005/nst.py +++ b/osmclient/sol005/nst.py @@ -174,6 +174,6 @@ class Nst(object): def update(self, name, filename): nst = self.get(name) - endpoint = '{}/{}/netslice_templates_content'.format(self._apiBase, nst['_id']) + endpoint = '{}/{}/nst_content'.format(self._apiBase, nst['_id']) self.create(filename=filename, update_endpoint=endpoint)