From: vijay.r Date: Fri, 9 Aug 2019 08:20:55 +0000 (+0530) Subject: Bug 820 fix - Unable to update NST via CLI X-Git-Tag: v6.0.2rc1~2^2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fosmclient.git;a=commitdiff_plain;h=12ddbf356d8b97e3f4afc67ec6543814153850fa Bug 820 fix - Unable to update NST via CLI Change-Id: Ia7050dead57d654bbacd442953298dd39d99f57f Signed-off-by: vijay.r --- 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)