You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2021/09/16 14:04:40 UTC

[GitHub] [dubbo-go] tonyjt opened a new issue #1463: interface conversion: xxx is not protoiface.MessageV1: missing method ProtoMessage

tonyjt opened a new issue #1463:
URL: https://github.com/apache/dubbo-go/issues/1463


   <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!
   
   -->
   
   **What happened**:
   
   使用tri协议,client调用返回[]int64,出现报错:
   
   grpc status not success, msg = interface conversion: dubbo.ActResp is not protoiface.MessageV1: missing method ProtoMessage, code = 2
   
   
   **What you expected to happen**:
   
   
   **How to reproduce it (as minimally and precisely as possible)**:
   
   syntax = "proto3";
   package dubbo.task;
   
   option go_package = "./;dubbo";
   
   
   service Act{
       rpc Act (ActReq) returns(ActResp) {};
   }
   
   
   message ActReq{
       string bizKey=1;
       string bizCode=2;
       string actKey=3;
       oneof optinal_objectId{
           string objectId=4;
       }
       string orderId=5;
       oneof optinal_count{
           int32 count=6;
       }
       oneof optinal_money{
           int32 money=7;
       }
       int64 actTime=8;
       int64 uid=9;
       oneof optinal_noReward{
           bool noReward=10;
       }
   }
   
   message ActResp{
       repeated int64 taskIds =1;
   }
   
   **Anything else we need to know?**:
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo-go] tonyjt closed issue #1463: interface conversion: xxx is not protoiface.MessageV1: missing method ProtoMessage

Posted by GitBox <gi...@apache.org>.
tonyjt closed issue #1463:
URL: https://github.com/apache/dubbo-go/issues/1463


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org