[skip ci]Add comments for chaos checker (#7938)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
pull/7940/head
yanliang567 2021-09-15 10:41:48 +08:00 committed by GitHub
parent f0d95f3a11
commit 0f37b92040
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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