diff options
author | Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> | 2021-06-15 13:01:54 +0000 |
---|---|---|
committer | Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> | 2021-06-18 07:39:23 +0000 |
commit | 92b7f70deb207f618f65ccc00e135e6b31fd56f0 (patch) | |
tree | ba152eb62d12f84f607e423350b244bb083fbf7c /miss_htbt_service/misshtbtd.py | |
parent | 6ebeaa909fb5c09f2ade3971c87d496b6a3a028a (diff) |
Remove unused imports and bump version to 2.3.0
Remove unused import statements from script.
Bumped up version to 2.3.0.
Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com>
Issue-ID: DCAEGEN2-2833
Change-Id: I015e89f1b56ca12483e432bf67123f33140d722c
Diffstat (limited to 'miss_htbt_service/misshtbtd.py')
-rw-r--r-- | miss_htbt_service/misshtbtd.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/miss_htbt_service/misshtbtd.py b/miss_htbt_service/misshtbtd.py index 1223308..868020c 100644 --- a/miss_htbt_service/misshtbtd.py +++ b/miss_htbt_service/misshtbtd.py @@ -4,6 +4,7 @@ # Copyright (c) 2019 Pantheon.tech. All rights reserved. # Copyright 2020 Deutsche Telekom. All rights reserved. # Copyright 2021 Samsung Electronics. All rights reserved. +# Copyright 2021 Fujitsu Ltd. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -26,28 +27,22 @@ # - Download the CBS configuration and populate the DB # # Author Prakash Hosangady(ph553f@att.com) + import traceback import os import sys import json -import datetime import time -import math import multiprocessing -import logging import subprocess import yaml import socket import os.path as path from pathlib import Path - import htbtworker as heartbeat import get_logger from mod import trapd_settings as tds -from mod.trapd_runtime_pid import save_pid, rm_pid from mod.trapd_get_cbs_config import get_cbs_config -from mod.trapd_exit import cleanup_and_exit -from mod.trapd_http_session import init_session_obj hb_properties_file = path.abspath(path.join(__file__, "../config/hbproperties.yaml")) |