diff --git a/tests/python_client/chaos/checker.py b/tests/python_client/chaos/checker.py index ead4cc47cd..01f50dd254 100644 --- a/tests/python_client/chaos/checker.py +++ b/tests/python_client/chaos/checker.py @@ -26,6 +26,11 @@ timeout = 20 class Checker: + """ + A base class of milvus operation checker to + a. check whether milvus is servicing + b. count operations and success rate + """ def __init__(self): self._succ = 0 self._fail = 0