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/mod/trapd_vnf_table.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'miss_htbt_service/mod/trapd_vnf_table.py') diff --git a/miss_htbt_service/mod/trapd_vnf_table.py b/miss_htbt_service/mod/trapd_vnf_table.py index b1691ba..001b566 100644 --- a/miss_htbt_service/mod/trapd_vnf_table.py +++ b/miss_htbt_service/mod/trapd_vnf_table.py @@ -5,6 +5,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. @@ -25,17 +26,11 @@ trapd_vnf_table verifies the successful creation of DB Tables. """ - -import psycopg2 import os -import sys -import logging import yaml import os.path as path -import json import time import subprocess -from onap_dcae_cbs_docker_client.client import get_config import get_logger import db_monitoring as dbmon @@ -44,7 +39,6 @@ import misshtbtd as db import config_notif as cf import cbs_polling as cbs - prog_name = os.path.basename(__file__) hb_properties_file = path.abspath(path.join(__file__, "../../config/hbproperties.yaml")) _logger = get_logger.get_logger(__name__) -- cgit 1.2.3-korg