fix: [TS-5926] change wal read file log (#30416)
This commit is contained in:
parent
55c5f8190d
commit
2502086b71
|
@ -426,11 +426,15 @@ int32_t walReadVer(SWalReader *pReader, int64_t ver) {
|
||||||
} else {
|
} else {
|
||||||
if (contLen < 0) {
|
if (contLen < 0) {
|
||||||
code = terrno;
|
code = terrno;
|
||||||
|
wError("vgId:%d, failed to read WAL record head, index:%" PRId64 ", from log file since %s",
|
||||||
|
pReader->pWal->cfg.vgId, ver, tstrerror(code));
|
||||||
} else {
|
} else {
|
||||||
code = TSDB_CODE_WAL_FILE_CORRUPTED;
|
code = TSDB_CODE_WAL_FILE_CORRUPTED;
|
||||||
|
wError("vgId:%d, failed to read WAL record head, index:%" PRId64 ", not enough bytes read, readLen:%" PRId64
|
||||||
|
", "
|
||||||
|
"expectedLen:%d",
|
||||||
|
pReader->pWal->cfg.vgId, ver, contLen, (int32_t)sizeof(SWalCkHead));
|
||||||
}
|
}
|
||||||
wError("vgId:%d, failed to read WAL record head, index:%" PRId64 ", from log file since %s",
|
|
||||||
pReader->pWal->cfg.vgId, ver, tstrerror(code));
|
|
||||||
TAOS_UNUSED(taosThreadMutexUnlock(&pReader->mutex));
|
TAOS_UNUSED(taosThreadMutexUnlock(&pReader->mutex));
|
||||||
TAOS_RETURN(code);
|
TAOS_RETURN(code);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue