From 3fe23a09f2fd333dcaf51cb4811c20be0941497c Mon Sep 17 00:00:00 2001 From: yanliang567 <82361606+yanliang567@users.noreply.github.com> Date: Tue, 5 Oct 2021 20:37:34 +0800 Subject: [PATCH] [skip ci]Add comments in chaos commons (#9272) Signed-off-by: yanliang567 --- tests/python_client/chaos/chaos_commons.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python_client/chaos/chaos_commons.py b/tests/python_client/chaos/chaos_commons.py index cf658f8f2e..a5757b981d 100644 --- a/tests/python_client/chaos/chaos_commons.py +++ b/tests/python_client/chaos/chaos_commons.py @@ -31,6 +31,7 @@ def gen_experiment_config(yaml): def start_monitor_threads(checkers={}): + """start the threads by checkers""" threads = {} for k, ch in checkers.items(): t = threading.Thread(target=ch.keep_running, args=())