From c35f947e70ca61ee05f9f4b671e6be249b345162 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Mon, 24 Jun 2024 19:44:55 +0800 Subject: [PATCH] fix:add db configuration that not reportted --- source/common/src/tglobal.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/common/src/tglobal.c b/source/common/src/tglobal.c index bf0d9bc16b..cba852b48f 100644 --- a/source/common/src/tglobal.c +++ b/source/common/src/tglobal.c @@ -1530,6 +1530,12 @@ static int32_t taosCfgDynamicOptionsForServer(SConfig *pCfg, const char *name) { return 0; } + if (strcasecmp("slowLogExceptDb", name) == 0) { + tstrncpy(tsSlowLogExceptDb, pItem->str, TSDB_DB_NAME_LEN); + cfgUnLock(pCfg); + return 0; + } + { // 'bool/int32_t/int64_t/float/double' variables with general modification function static OptionNameAndVar debugOptions[] = { {"dDebugFlag", &dDebugFlag}, {"vDebugFlag", &vDebugFlag}, {"mDebugFlag", &mDebugFlag},