aboutsummaryrefslogtreecommitdiffstats
path: root/bin/run.py
diff options
context:
space:
mode:
authorGokul Singaraju <gs244f@att.com>2018-03-27 15:31:12 -0400
committerGokul Singaraju <gs244f@att.com>2018-03-27 15:32:55 -0400
commit286ec745cc0ef412b450d7c5c07d735707f9418b (patch)
treeb950f298867d1e04c93f69e16e28156e7b07ac86 /bin/run.py
parent5b1be8ea36f150c226cd75ec559bbafb2378e3cc (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/run.py')
-rwxr-xr-xbin/run.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/run.py b/bin/run.py
index 55bb683..159e7a4 100755
--- a/bin/run.py
+++ b/bin/run.py
@@ -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()