fix(stream): reset the status before re-send data.

This commit is contained in:
Haojun Liao 2024-06-28 16:25:59 +08:00
parent b5661752aa
commit 79be59d20c
1 changed files with 1 additions and 0 deletions

View File

@ -416,6 +416,7 @@ static void setResendInfo(SDispatchEntry* pEntry, int64_t now) {
pEntry->sendTs = now;
pEntry->rspTs = -1;
pEntry->retryCount += 1;
pEntry->status = TSDB_CODE_SUCCESS;
}
static void addDispatchEntry(SDispatchMsgInfo* pMsgInfo, int32_t nodeId, int64_t now, bool lock) {