From 12ddbf356d8b97e3f4afc67ec6543814153850fa Mon Sep 17 00:00:00 2001 From: "vijay.r" Date: Fri, 9 Aug 2019 13:50:55 +0530 Subject: [PATCH] Bug 820 fix - Unable to update NST via CLI Change-Id: Ia7050dead57d654bbacd442953298dd39d99f57f Signed-off-by: vijay.r --- osmclient/sol005/nst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.17.1