fix: ignore taosSetSystemLocale error temporarily

This commit is contained in:
Shungang Li 2024-07-30 14:42:17 +08:00
parent a544662cd5
commit d9a7d20d22
1 changed files with 1 additions and 1 deletions

View File

@ -1212,7 +1212,7 @@ static int32_t taosSetSystemCfg(SConfig *pCfg) {
TAOS_CHECK_GET_CFG_ITEM(pCfg, pItem, "charset");
const char *charset = pItem->str;
TAOS_CHECK_RETURN(taosSetSystemLocale(locale, charset));
(void)taosSetSystemLocale(locale, charset); // ignore this error temporarily
osSetSystemLocale(locale, charset);
TAOS_CHECK_GET_CFG_ITEM(pCfg, pItem, "enableCoreFile");