aboutsummaryrefslogtreecommitdiffstats
path: root/miss_htbt_service/check_health.py
diff options
context:
space:
mode:
authorSrikanthNaidu <sn8492@att.com>2018-12-19 19:06:39 +0530
committerSrikanthNaidu <sn8492@att.com>2018-12-19 19:06:39 +0530
commite011cf052edad0e70ce2846d483fa29f6283bef3 (patch)
treeed8ac40b06cbf4e94f13f15c31602b2378f36abb /miss_htbt_service/check_health.py
parent20110ffeb5071193e7b437e797636d9d6318dcd4 (diff)
heartbeat service Logging complaincepgcode-optimization
All components deployed should conform to ONAP logging guidelines Issue-ID: DCAEGEN2-628 Change-Id: I2febe2456033f3aa2961fcb2f656b64b1515cd03 Signed-off-by: SrikanthNaidu <sn8492@att.com>
Diffstat (limited to 'miss_htbt_service/check_health.py')
-rw-r--r--miss_htbt_service/check_health.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miss_htbt_service/check_health.py b/miss_htbt_service/check_health.py
index fb99584..5732749 100644
--- a/miss_htbt_service/check_health.py
+++ b/miss_htbt_service/check_health.py
@@ -62,6 +62,6 @@ class GetHandler(BaseHTTPRequestHandler):
if __name__ == '__main__':
from http.server import HTTPServer
#from BaseHTTPServer import HTTPServer
- server = HTTPServer(("", 10001), GetHandler)
- print('Starting server at http://localhost:10001')
+ server = HTTPServer(("", 10002), GetHandler)
+ print('Starting server at http://localhost:10002')
server.serve_forever()