fix(stream): always return 0 for enqueuing retrieve block.

This commit is contained in:
Haojun Liao 2024-06-14 14:43:27 +08:00
parent 9af6076b4f
commit b25e6d3250
1 changed files with 3 additions and 1 deletions

View File

@ -418,7 +418,9 @@ int32_t tqStreamTaskProcessRetrieveReq(SStreamMeta* pMeta, SRpcMsg* pMsg) {
streamMetaReleaseTask(pMeta, pTask);
tCleanupStreamRetrieveReq(&req);
return code;
// always return success, to disable the auto rsp
return TSDB_CODE_SUCCESS;
}
int32_t tqStreamTaskProcessCheckReq(SStreamMeta* pMeta, SRpcMsg* pMsg) {