diff options
author | c00149107 <chenchuanyu@huawei.com> | 2017-04-26 15:20:14 +0800 |
---|---|---|
committer | c00149107 <chenchuanyu@huawei.com> | 2017-04-26 15:20:14 +0800 |
commit | b321ffb9b4ba3d071565356608044ab265ff8d96 (patch) | |
tree | 991d958933431c4ddbe133805fe927c358ce7f6c /lifecyclemgr/src/main | |
parent | ce402c1b693b5c91d602649f2d457503df68c543 (diff) |
Fix resmgr NE create failed issue
Fix resmgr NE create failed issue
Change-Id: Ifaa56cabfac5041c40da43a931669628b3bb807d
Issue-ID:CLIENT-200
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Diffstat (limited to 'lifecyclemgr/src/main')
-rw-r--r-- | lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js index a792de8f..0718569a 100644 --- a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js +++ b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js @@ -855,7 +855,7 @@ function scaleServiceInstance(nsInstanceId, scaleType, aspectId, numberOfSteps, }
]
};
- var nfvoUri = '/openoapi/nslcm/1.0/ns/' + nsInstanceId + '/scale';
+ var nfvoUri = '/openoapi/nslcm/v1/ns/' + nsInstanceId + '/scale';
$.when(
$.ajax({
type: "POST",
|