mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
* Update codes of connection Signed-off-by: wangting0128 <ting.wang@zilliz.com> * [skip ci] Update log for test Signed-off-by: wangting0128 <ting.wang@zilliz.com>
18 lines
456 B
Python
18 lines
456 B
Python
import json
|
|
|
|
|
|
class TestInfo:
|
|
def __init__(self):
|
|
self.get_default_config()
|
|
|
|
def get_default_config(self):
|
|
""" Make sure the path exists """
|
|
self.home_dir = "/tmp/"
|
|
self.log_dir = self.home_dir + "log/"
|
|
self.log_debug = "%s/refactor_test.debug" % self.log_dir
|
|
self.log_info = "%s/refactor_test.log" % self.log_dir
|
|
self.log_err = "%s/refactor_test.err" % self.log_dir
|
|
|
|
|
|
test_info = TestInfo()
|