diff options
author | 2019-01-31 06:27:40 +0000 | |
---|---|---|
committer | 2019-01-31 14:34:57 +0000 | |
commit | 9557b8d53b11519b5d014f78cdd6ad5e92757cfc (patch) | |
tree | 36c8b57b5b78a6fee32b8e90c5207d91648a4d5b /miss_htbt_service/htbtworker.py | |
parent | 5e4ea155f6766e19d245173a10d15ebe3618c9d1 (diff) |
Heartbeat Microservice Support
Heartbeat service monitors missing HB notification
Issue-ID: DCAEGEN2-267
Change-Id: I40a928fbf56164ec5288a4d489ffa10eee28e113
Signed-off-by: PrakashH <pbhandar@techmahindra.com>
Diffstat (limited to 'miss_htbt_service/htbtworker.py')
-rw-r--r-- | miss_htbt_service/htbtworker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miss_htbt_service/htbtworker.py b/miss_htbt_service/htbtworker.py index 6dbd6cd..dc770fc 100644 --- a/miss_htbt_service/htbtworker.py +++ b/miss_htbt_service/htbtworker.py @@ -71,7 +71,7 @@ def process_msg(jsfile,user_name, password, ip_address, port_num, db_name): msg="\n\nHBT:eventnameList values ", eventnameList _logger.info(msg) if "groupID" not in os.environ or "consumerID" not in os.environ: - get_url = mr_url + 'DefaultGroup/1?timeout=15000' + get_url = mr_url + '/DefaultGroup/1?timeout=15000' else: get_url = mr_url + '/' + os.getenv('groupID', "") + '/' + os.getenv('consumerID', "") + '?timeout=15000' msg="HBT:Getting :"+get_url |