diff --git a/src/obproxy/dbconfig/ob_proxy_db_config_processor.cpp b/src/obproxy/dbconfig/ob_proxy_db_config_processor.cpp index 18f627a7170fa833433fc01fa24acad803ae0abb..529410593abea0572983c45d8f9453379634931e 100644 --- a/src/obproxy/dbconfig/ob_proxy_db_config_processor.cpp +++ b/src/obproxy/dbconfig/ob_proxy_db_config_processor.cpp @@ -76,7 +76,7 @@ int ObDbConfigProcessor::init(const int64_t client_count, int64_t startup_time_u if (OB_SUCC(ret)) { if (get_global_proxy_config().use_local_dbconfig && OB_FAIL(get_global_inotify_processor().init())) { - LOG_WARN("fail to init initify processor", K(ret)); + LOG_WARN("fail to init inotify processor", K(ret)); } } return ret; diff --git a/src/obproxy/obutils/ob_proxy_config.h b/src/obproxy/obutils/ob_proxy_config.h index a8730690fd5752e1eaa056dae800b7f559327561..17bc690a81043d770932248e25f14f2e2579930e 100644 --- a/src/obproxy/obutils/ob_proxy_config.h +++ b/src/obproxy/obutils/ob_proxy_config.h @@ -396,7 +396,7 @@ public: DEF_BOOL(enable_mysql_proxy_pool, "true", "if enabled, will long conn for sequence ", CFG_NO_NEED_REBOOT, CFG_SECTION_OBPROXY, CFG_VISIBLE_LEVEL_USER); // sidecar - DEF_BOOL(enable_sharding, "false", "if enabled means use beyond trust", CFG_NO_NEED_REBOOT, CFG_SECTION_OBPROXY, CFG_VISIBLE_LEVEL_USER); + DEF_BOOL(enable_sharding, "false", "if enabled means use logic db", CFG_NO_NEED_REBOOT, CFG_SECTION_OBPROXY, CFG_VISIBLE_LEVEL_USER); DEF_STR(sidecar_node_id, "", "node id for dbmesh", CFG_NO_NEED_REBOOT, CFG_SECTION_OBPROXY, CFG_VISIBLE_LEVEL_USER); DEF_STR(dataplane_host, "", "dataplane address or hostname", CFG_NO_NEED_REBOOT, CFG_SECTION_OBPROXY, CFG_VISIBLE_LEVEL_USER); DEF_BOOL(use_local_dbconfig, "false", "if enabled, start dbmesh with local dbconfig", CFG_NO_NEED_REBOOT, CFG_SECTION_OBPROXY, CFG_VISIBLE_LEVEL_USER);