Merge pull request #7323 from taosdata/feature/TD-6012

[TD-6012]<fix>: fixed no sql recordings via http while httpEnableRecordSql was on
This commit is contained in:
dapan1121 2021-08-13 10:41:22 +08:00 committed by GitHub
commit 8ab4f84629
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -166,7 +166,6 @@ int32_t dnodeInitSystem() {
taosInitGlobalCfg();
taosReadGlobalLogCfg();
taosSetCoreDump();
taosInitNotes();
dnodeInitTmr();
if (dnodeCreateDir(tsLogDir) < 0) {
@ -188,6 +187,8 @@ int32_t dnodeInitSystem() {
dInfo("start to initialize TDengine");
taosInitNotes();
if (dnodeInitComponents() != 0) {
return -1;
}