mirror of https://github.com/milvus-io/milvus.git
[test]Make secure param as bool type (#19194)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com> Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>pull/19176/head
parent
0bfd2c95b8
commit
992d163988
|
@ -24,7 +24,7 @@ def pytest_addoption(parser):
|
|||
parser.addoption("--port", action="store", default=19530, help="service's port")
|
||||
parser.addoption("--user", action="store", default="", help="user name for connection")
|
||||
parser.addoption("--password", action="store", default="", help="password for connection")
|
||||
parser.addoption("--secure", action="store", default=True, help="secure for connection")
|
||||
parser.addoption("--secure", type=bool, action="store", default=True, help="secure for connection")
|
||||
parser.addoption("--http_port", action="store", default=19121, help="http's port")
|
||||
parser.addoption("--handler", action="store", default="GRPC", help="handler of request")
|
||||
parser.addoption("--tag", action="store", default="all", help="only run tests matching the tag.")
|
||||
|
|
Loading…
Reference in New Issue