Optmize utility wrapper import (#8979)

Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
pull/8984/head
ThreadDao 2021-09-30 19:52:16 +08:00 committed by GitHub
parent 2a3d56db8c
commit 6b74c7f79f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -2,8 +2,7 @@ from pymilvus import utility
import sys
sys.path.append("..")
from check.param_check import *
from check.func_check import *
from check.func_check import ResponseChecker
from utils.api_request import api_request
@ -79,8 +78,6 @@ class ApiUtilityWrapper:
check_result = ResponseChecker(res, func_name, check_task, check_items, is_succ,
collection_name=collection_name,
timeout=timeout, using=using).run()
log.debug(res)
log.debug(check_result)
return res, check_result
def list_collections(self, timeout=None, using="default", check_task=None, check_items=None):