You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by gu...@apache.org on 2021/12/17 02:54:12 UTC

[dubbo] branch 3.0 updated: Fix method sigs that may not pass original check (#9417)

This is an automated email from the ASF dual-hosted git repository.

guohao pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/3.0 by this push:
     new 5acc9b2  Fix method sigs that may not pass original check (#9417)
5acc9b2 is described below

commit 5acc9b24853ede4b990a7529de3969f744847433
Author: GuoHao <gu...@gmail.com>
AuthorDate: Fri Dec 17 10:50:56 2021 +0800

    Fix method sigs that may not pass original check (#9417)
---
 .../java/org/apache/dubbo/rpc/protocol/tri/AbstractServerStream.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/AbstractServerStream.java b/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/AbstractServerStream.java
index 47de41d..c9c56fe 100644
--- a/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/AbstractServerStream.java
+++ b/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/AbstractServerStream.java
@@ -140,7 +140,7 @@ public abstract class AbstractServerStream extends AbstractStream implements Str
     protected RpcInvocation buildInvocation(Metadata metadata) {
         RpcInvocation inv = new RpcInvocation(getUrl().getServiceModel(),
             getMethodName(), getServiceDescriptor().getServiceName(),
-            getUrl().getProtocolServiceKey(), getMethodDescriptor().getParameterClasses(), new Object[0]);
+            getUrl().getProtocolServiceKey(), getMethodDescriptor().getRealParameterClasses(), new Object[0]);
         inv.setTargetServiceUniqueName(getUrl().getServiceKey());
         inv.setReturnTypes(getMethodDescriptor().getReturnTypes());