[skip e2e]Delete some verbose info (#15920)

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
This commit is contained in:
zhuwenxing 2022-03-08 11:59:58 +08:00 committed by GitHub
parent 6fec7ed6fb
commit 53db60bb4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -189,8 +189,6 @@ class TestChaos(TestChaosBase):
chaos_res.create(chaos_config) chaos_res.create(chaos_config)
log.info("chaos injected") log.info("chaos injected")
log.info(f"chaos information: {chaos_res.get(meta_name)}") log.info(f"chaos information: {chaos_res.get(meta_name)}")
res = chaos_res.get(meta_name)
log.info(f"chaos crd list: {res}")
sleep(constants.WAIT_PER_OP * 2) sleep(constants.WAIT_PER_OP * 2)
# reset counting # reset counting
cc.reset_counting(self.health_checkers) cc.reset_counting(self.health_checkers)
@ -218,9 +216,6 @@ class TestChaos(TestChaosBase):
log.error(f"Fail to write the report: {e}") log.error(f"Fail to write the report: {e}")
# delete chaos # delete chaos
chaos_res.delete(meta_name) chaos_res.delete(meta_name)
# get chaos crd, expect it is deleted
res = chaos_res.get(meta_name)
log.info(f"chaos crd list: {res}")
log.info("chaos deleted") log.info("chaos deleted")
log.info(f'Alive threads: {threading.enumerate()}') log.info(f'Alive threads: {threading.enumerate()}')