douhuan2101 2018-08-12 08:26
浏览 1576
已采纳

grpc:服务器无法编码响应:rpc错误:代码=内部desc = grpc:编组时出错:原型:元帅以nil调用

The following RPC should ideally receive a message and marshal to JSON. But, the following error is encountered: ERROR: 2018/08/12 13:43:07 grpc: server failed to encode response: rpc error: code = Internal desc = grpc: error while marshaling: proto: Marshal called with nil

func (s *beaconServer) Transmit(ctx context.Context, batch *pb.Batch) (*pb.Empty, error) {
    var empty *pb.Empty

    var messageJSON bytes.Buffer
    marshaler := &jsonpb.Marshaler{
        OrigName: true,
    }
    err := marshaler.Marshal(&messageJSON, batch)
    if err != nil {
        return empty, err
    }

    log.Println(string(messageJSON.Bytes()))
    return empty, nil
}

.. returns

2018/08/12 14:24:09 beacon.go:34: {"stream_id":"abc11","event_type":"e","events":[{"file_path":"/tmp/python.py","location":"256","count":"30"},{"file_path":"/tmp/temp.py","location":"253","count":"305"}],"start_time":"2038-01-19 03:14:07","end_time":"2038-01-19 03:14:27"}
ERROR: 2018/08/12 14:24:09 grpc: server failed to encode response:  rpc error: code = Internal desc = grpc: error while marshaling: proto: Marshal called with nil
  • 写回答

1条回答 默认 最新

  • duanpan3166 2018-08-13 09:38
    关注

    The error is probably not caused by the marshallers in this code block

    When you do var empty *pb.Empty you are creating an uninitialised variable *pb.Empty which is nil. It's very likely that something upstream that tries to marshal this empty is causing the error.

    Runnable example here: https://play.golang.org/p/QsNCWXM615Q

    If you want to initialise empty, then you should do return new(pb.Empty), nil

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥500 高有偿提问!求优化设计微信小程序
  • ¥15 matlab在安装时报错 无法找到入口 无法定位程序输入点
  • ¥15 收益高的广告联盟有哪些
  • ¥15 Android Studio webview 的使用问题, 播放器横屏全屏
  • ¥15 删掉jdk后重新下载,Java web所需要的eclipse无法使用
  • ¥15 uniapp正式环境中通过webapi将本地数据推送到设备出现的跨域问题
  • ¥15 xui建立节点,显示错误
  • ¥15 关于#单片机#的问题:开始、复位、十进制的功能可以实现,但是切换八进制的功能无法实现(按下按键也没有效果),把初始状态调成八进制,也是八进制可以实现但是切换到十进制不行(相关搜索:汇编语言|计数器)
  • ¥15 VINS-Mono或Fusion中feature_manager中estimated_depth是特征的深度还是逆深度?
  • ¥15 谷歌浏览器如何备份抖音网页数据