fix(tsdb/open fs): fix retval

This commit is contained in:
Minglei Jin 2023-08-29 10:20:56 +08:00
parent f299ae9bc3
commit b88d79d2ef
1 changed files with 2 additions and 2 deletions

View File

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