fix: ignore tsdbCacheFlushDirty errcode

This commit is contained in:
Shungang Li 2024-09-11 19:22:04 +08:00
parent 44a955218c
commit 4d103c09d4
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ static void tsdbCacheDeleter(const void *key, size_t klen, void *value, void *ud
SLastCol *pLastCol = (SLastCol *)value;
if (pLastCol->dirty) {
tsdbCacheFlushDirty(key, klen, pLastCol, ud);
(void)tsdbCacheFlushDirty(key, klen, pLastCol, ud);
}
for (uint8_t i = 0; i < pLastCol->rowKey.numOfPKs; ++i) {