Merge pull request #22610 from taosdata/fix/TD-25963

fix(tsdb/open fs): fix retval
This commit is contained in:
wade zhang 2023-08-29 13:48:29 +08:00 committed by GitHub
commit 97f88fbc50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -637,7 +637,7 @@ _exit:
} else { } else {
tsdbInfo("vgId:%d %s success", TD_VID(pTsdb->pVnode), __func__); tsdbInfo("vgId:%d %s success", TD_VID(pTsdb->pVnode), __func__);
} }
return 0; return code;
} }
static int32_t close_file_system(STFileSystem *fs) { static int32_t close_file_system(STFileSystem *fs) {
@ -730,7 +730,7 @@ _exit:
} else { } else {
tsdbInfo("vgId:%d %s success", TD_VID(pTsdb->pVnode), __func__); tsdbInfo("vgId:%d %s success", TD_VID(pTsdb->pVnode), __func__);
} }
return 0; return code;
} }
static void tsdbDoWaitBgTask(STFileSystem *fs, STFSBgTask *task) { static void tsdbDoWaitBgTask(STFileSystem *fs, STFSBgTask *task) {