fix(stf): fix router.InvokeTyped reflection usage (#20741)

This commit is contained in:
Matt Kocubinski 2024-06-20 10:53:25 -05:00 committed by GitHub
parent d2903a9eb9
commit 88da9eff4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -160,7 +160,7 @@ func (r Router) InvokeTyped(ctx context.Context, req, resp protoiface.MessageV1)
if err != nil {
return err
}
merge(resp, handlerResp)
merge(handlerResp, resp)
return nil
}