diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-03-29 11:33:37 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-03-29 11:33:37 +0800 |
commit | 1b711747cf89da15bcb7ef367f558af2238f442e (patch) | |
tree | 361602831dad6614b77a4039591a9b3c966a1ed5 | |
parent | 2839c6c4a2458fc500edac852a852d5fb3d4db45 (diff) |
Repair bugs of gvnfm vnflcm
Change-Id: Ifc964b0ef2e076f17d16aa2d951d8efa4a488e57
Issue-Id: GVNFM-47
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r-- | lcm/lcm/pub/msapi/gvnfmdriver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/lcm/pub/msapi/gvnfmdriver.py b/lcm/lcm/pub/msapi/gvnfmdriver.py index 362045a7..954e1b82 100644 --- a/lcm/lcm/pub/msapi/gvnfmdriver.py +++ b/lcm/lcm/pub/msapi/gvnfmdriver.py @@ -41,4 +41,4 @@ def notify_lcm_to_nfvo(data): if ret[0] != 0: logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) raise NFLCMException("Nf lcm notify exception") - return json.JSONDecoder().decode(ret[1]) + return ret[1] |