fix: set correct udf output type when retrieve from mnode

This commit is contained in:
slzhou 2022-05-18 12:16:28 +08:00
parent 00c11b01fe
commit 950835e1fc
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ void udfdProcessRpcRsp(void *parent, SRpcMsg *pMsg, SEpSet *pEpSet) {
SUdf* udf = msgInfo->param;
udf->funcType = pFuncInfo->funcType;
udf->scriptType = pFuncInfo->scriptType;
udf->outputType = pFuncInfo->funcType;
udf->outputType = pFuncInfo->outputType;
udf->outputLen = pFuncInfo->outputLen;
udf->bufSize = pFuncInfo->bufSize;