From 463f6a937c2249f590c47cfd985bb2c1104507c2 Mon Sep 17 00:00:00 2001 From: Yee <2520865+yixinglu@users.noreply.github.com> Date: Tue, 19 Oct 2021 20:38:55 +0800 Subject: [PATCH] Fix nebula service start parameters in TCK test framework (#3113) * Fix nebula service start parameters in TCK test framework * multiple graphd --- tests/nebula-test-run.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/nebula-test-run.py b/tests/nebula-test-run.py index c012cbca2fe..2a89ed249d2 100755 --- a/tests/nebula-test-run.py +++ b/tests/nebula-test-run.py @@ -42,7 +42,7 @@ def init_parser(): help='start or stop command') opt_parser.add_option('--multi_graphd', dest='multi_graphd', - default='', + default='false', help='Support multi graphds') opt_parser.add_option('--address', dest='address', @@ -91,12 +91,12 @@ def start_nebula(nb, configs): address = "localhost" ports = nb.start( debug_log=opt_is(configs.debug, "true"), - multi_graphd=configs.multi_graphd, + multi_graphd=opt_is(configs.multi_graphd, "true"), ca_signed=opt_is(configs.ca_signed, "true"), - enable_ssl=opt_is(configs.enable_ssl, "true"), - enable_graph_ssl=opt_is(configs.enable_graph_ssl, "true"), - enable_meta_ssl=opt_is(configs.enable_meta_ssl, "true"), - containerized=opt_is(configs.containerized, "true") + enable_ssl=configs.enable_ssl, + enable_graph_ssl=configs.enable_graph_ssl, + enable_meta_ssl=configs.enable_meta_ssl, + containerized=configs.containerized ) # Load csv data