diff options
author | Gokul Singaraju <gs244f@att.com> | 2018-03-27 15:31:12 -0400 |
---|---|---|
committer | Gokul Singaraju <gs244f@att.com> | 2018-03-27 15:32:55 -0400 |
commit | 286ec745cc0ef412b450d7c5c07d735707f9418b (patch) | |
tree | b950f298867d1e04c93f69e16e28156e7b07ac86 /bin | |
parent | 5b1be8ea36f150c226cd75ec559bbafb2378e3cc (diff) |
Added tests for heartbeat coverage
Issue-ID: DCAEGEN2-276
Change-Id: Ib0fa11fc5978f47854056f3c198347120b3873a8
Signed-off-by: Gokul Singaraju <gs244f@att.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/run.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -17,6 +17,9 @@ # ============LICENSE_END========================================================= # # ECOMP is a trademark and service mark of AT&T Intellectual Property. +# +# Author Gokul Singaraju gs244f@att.com +# import sys import yaml @@ -55,7 +58,7 @@ if __name__ == '__main__': #print(cfg['vnfs'][vnf][0]) #print(cfg['vnfs'][vnf][1]) #print(cfg['vnfs'][vnf][2]) - #Start Heartbeat monitoring process on VNFs configured + #Start Heartbeat monitoring process worker thread on VNFs configured p = multiprocessing.Process(target=checkhtbt, args=(cfg['global']['message_router_url'],cfg['vnfs'][vnf][0],cfg['vnfs'][vnf][1],cfg['vnfs'][vnf][2],cfg['vnfs'][vnf][3])) jobs.append(p) p.start() |