From 92b7f70deb207f618f65ccc00e135e6b31fd56f0 Mon Sep 17 00:00:00 2001 From: Satoshi Fujii Date: Tue, 15 Jun 2021 13:01:54 +0000 Subject: 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 Issue-ID: DCAEGEN2-2833 Change-Id: I015e89f1b56ca12483e432bf67123f33140d722c --- miss_htbt_service/misshtbtd.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'miss_htbt_service/misshtbtd.py') 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")) -- cgit 1.2.3-korg