diff --git a/src/tsdb/src/tsdbFS.c b/src/tsdb/src/tsdbFS.c index fd4fa5f13929c1c43f24c5b5df208b505c25eca1..54372ae8c28d91a72243256a74a8fb53c317eab2 100644 --- a/src/tsdb/src/tsdbFS.c +++ b/src/tsdb/src/tsdbFS.c @@ -241,7 +241,7 @@ void *tsdbFreeFS(STsdbFS *pfs) { static int tsdbProcessExpiredFS(STsdbRepo *pRepo) { tsdbStartFSTxn(pRepo, 0, 0); if (tsdbCreateMeta(pRepo) < 0) { - tsdbError("vgId:%d failed to apply rtn since %s", REPO_ID(pRepo), tstrerror(terrno)); + tsdbError("vgId:%d failed to create meta since %s", REPO_ID(pRepo), tstrerror(terrno)); return -1; } @@ -309,7 +309,7 @@ int tsdbOpenFS(STsdbRepo *pRepo) { tsdbError("vgId:%d failed to open FS since %s", REPO_ID(pRepo), tstrerror(terrno)); return -1; } - + tsdbScanAndTryFixDFilesHeader(pRepo, &nExpired); if (nExpired > 0) { tsdbProcessExpiredFS(pRepo);