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

This commit is contained in:
Matt Kocubinski
2024-06-20 15:53:25 +00:00
committed by GitHub
parent d2903a9eb9
commit 88da9eff4f
+1 -1
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
}