diff options
author | Fu Jinhua <fu.jinhua@zte.com.cn> | 2017-09-18 10:43:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-18 10:43:22 +0000 |
commit | 95af63c7e872a982c858afbccc0249a0bc0a5f54 (patch) | |
tree | f942d8735d26b6116cb2be45a6ae8ecd276d4a3e | |
parent | 2e6d9184a2ef7cda6150e7a92e98803f8c4bb888 (diff) | |
parent | d0ee4c24dde280c02623c8d66f5e4427ccf3b046 (diff) |
Merge "Fix sfc status logic of vfc-nfvo-lcm"
-rw-r--r-- | lcm/workflows/build_in.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lcm/workflows/build_in.py b/lcm/workflows/build_in.py index bbc676e9..426e0c0a 100644 --- a/lcm/workflows/build_in.py +++ b/lcm/workflows/build_in.py @@ -68,6 +68,7 @@ def run_ns_instantiate(input_data): [confirm_vnf_status(inst_id) for inst_id, _, _ in jobs] update_job(job_id, 70, "0", "Start to create SFC") + g_jobs_status[job_id] = [1 for i in range(sfc_count)] jobs = [create_sfc(ns_inst_id, i + 1, nsd_json, sdnc_id) for i in range(sfc_count)] wait_until_jobs_done(job_id, jobs) |