We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5078a28 commit 0f9077bCopy full SHA for 0f9077b
plugins/son-mano-service-lifecycle-management/son_mano_slm/slm.py
@@ -2018,7 +2018,7 @@ def update_nsr(self, serv_id):
2018
2019
nsr_id = serv_id
2020
nsr['id'] = nsr_id
2021
- nsr['version'] = str(int(nsr['version']) + 1)
+ nsr['version'] = int(nsr['version']) + 1
2022
url = t.nsr_path + '/' + nsr_id
2023
LOG.info("Service " + serv_id + ": " + str(url))
2024
header = {'Content-Type': 'application/json'}
0 commit comments