diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2022-10-25 16:15:07 +0000 |
---|---|---|
committer | Vijay Venkatesh Kumar <vv770d@att.com> | 2022-10-25 16:20:03 +0000 |
commit | 2e840627a6b01475eb98b52f0a45593b4f2b8641 (patch) | |
tree | 862885d96ca474e398a8cbc5370868f6ab77a124 /miss_htbt_service | |
parent | 462cee04e5d952f544a8300dc5a0d1e297482e3f (diff) |
Fix black check compatibility issue2.5.0
Change-Id: Ide32d2287d4d760534edb41e2cf8201bb6e87d82
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-3297
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Diffstat (limited to 'miss_htbt_service')
-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 0d43533..6765266 100644 --- a/miss_htbt_service/htbtworker.py +++ b/miss_htbt_service/htbtworker.py @@ -102,7 +102,7 @@ def process_msg(jsfile, user_name, password, ip_address, port_num, db_name): res = requests.get(get_url) except Exception as e: # message-router may be down temporarily. continue polling loop to try again - _logger.error('HBT: Failed to fetch messages from DMaaP. get_url=%s', get_url, exc_info=e) + _logger.error("HBT: Failed to fetch messages from DMaaP. get_url=%s", get_url, exc_info=e) time.sleep(1) continue _logger.info("HBT: %s", res.text) |