From d9fe6d3403cb0c3a8b0260c537e0470eb6ef5d60 Mon Sep 17 00:00:00 2001 From: PrakashH Date: Mon, 28 Jan 2019 20:49:02 +0000 Subject: Heartbeat Microservice Support Heartbeat service monitors missing HB notification Issue-ID: DCAEGEN2-267 Change-Id: I0fd191b2a3495202e22f633ada4a1350a97557ad Signed-off-by: PrakashH (cherry picked from commit a86243058c2daa560aebaecdb096ff63788a6f44) --- miss_htbt_service/check_health.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'miss_htbt_service/check_health.py') 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() -- cgit 1.2.3-korg