From 8ea70b60efac67f8b4ad4be8b8018a946f551d06 Mon Sep 17 00:00:00 2001 From: Satoshi Fujii Date: Wed, 13 Oct 2021 09:16:09 +0000 Subject: Fix pod become unready state The original implementation used Popen but its stdout pipe became clogged because the captured output was not processed properly. As a result, readiness check failed due to health-check server not responding and the pod became unready state. Signed-off-by: Satoshi Fujii Issue-ID: DCAEGEN2-2832 Change-Id: I98259e25fe40d5374a2c4236fc20bd631673f15e --- tests/test_trapd_vnf_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_trapd_vnf_table.py b/tests/test_trapd_vnf_table.py index 577a320..4f6e5e4 100644 --- a/tests/test_trapd_vnf_table.py +++ b/tests/test_trapd_vnf_table.py @@ -43,6 +43,7 @@ class test_vnf_tables(unittest.TestCase): """ global ip_address, port_num, user_name, password, db_name, cbs_polling_required, cbs_polling_interval ip_address, port_num, user_name, password, db_name, cbs_polling_required, cbs_polling_interval = hb_properties() + def test_validate_vnf_table_1(self): result =verify_DB_creation_1(user_name,password,ip_address,port_num,db_name) self.assertEqual(result, True) @@ -55,7 +56,6 @@ class test_vnf_tables(unittest.TestCase): result =verify_DB_creation_hb_common(user_name,password,ip_address,port_num,db_name) self.assertEqual(result, True) - def test_cbspolling(self): result= verify_cbspolling() _logger.info(result) -- cgit 1.2.3-korg