| commit | 771907b5b7087df80e51d494b0c77263a62f47da | [log] [tgz] |
|---|---|---|
| author | tierno <alfonso.tiernosepulveda@telefonica.com> | Fri Aug 30 09:24:06 2019 +0200 |
| committer | Gerrit Code Review <root@osm.etsi.org> | Fri Aug 30 09:24:06 2019 +0200 |
| tree | 3e93833ad521e540c32a4531cfdc1fb769995284 | |
| parent | 1f3e889846ff574daf98fc699d81279f5f302e71 [diff] | |
| parent | 12ddbf356d8b97e3f4afc67ec6543814153850fa [diff] |
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 @@ 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)