From b5fa8bf617a13fd9e0ed3665a368ee88da0e6a56 Mon Sep 17 00:00:00 2001 From: Kaili Xu Date: Thu, 27 May 2021 13:37:41 +0800 Subject: [PATCH] update logs --- src/tsdb/src/tsdbFS.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tsdb/src/tsdbFS.c b/src/tsdb/src/tsdbFS.c index fd4fa5f139..54372ae8c2 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); -- GitLab