From 4e0360e884a22347b9cc912c5501d0d22d1c4779 Mon Sep 17 00:00:00 2001 From: Rongfeng Fu Date: Wed, 22 Dec 2021 19:28:34 +0800 Subject: [PATCH] fix #66 (#67) --- plugins/oceanbase/3.1.0/start.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/oceanbase/3.1.0/start.py b/plugins/oceanbase/3.1.0/start.py index 182f087..81ceafc 100644 --- a/plugins/oceanbase/3.1.0/start.py +++ b/plugins/oceanbase/3.1.0/start.py @@ -137,7 +137,10 @@ def start(plugin_context, local_home_path, repository_dir, *args, **kwargs): 'mode': '-m', 'scn': '-f' } - not_cmd_opt = ['home_path', 'obconfig_url', 'proxyro_password', 'redo_dir', 'clog_dir', 'ilog_dir', 'slog_dir'] + not_cmd_opt = [ + 'home_path', 'obconfig_url', 'root_password', 'proxyro_password', + 'redo_dir', 'clog_dir', 'ilog_dir', 'slog_dir' + ] get_value = lambda key: "'%s'" % server_config[key] if isinstance(server_config[key], str) else server_config[key] opt_str = [] for key in server_config: -- GitLab