Tencent / flare

Flare是广泛投产于腾讯广告后台的现代化C++开发框架,包含了基础库、RPC、各种客户端等。主要特点为易用性强、长尾延迟低。
Other
1.33k stars 200 forks source link

http json 转 protobuf message 出错 #61

Closed xuexcy closed 2 years ago

xuexcy commented 2 years ago

https://github.com/Tencent/flare/blob/6d3bf3c46ab5e4178a0676de6d1172930bc45a3a/flare/rpc/protocol/protobuf/gdt_json_proto_conversion.cc#L326

这里处理repeated字段,是不是应该写成 item.asString() , 而不是value.asString(),因为value是一个数组。

} else if (auto opt = TryParse(item.asString())) {

0x804d8000 commented 2 years ago

是的,感谢反馈。稍后我修一下。

0x804d8000 commented 2 years ago

Fixed via #62.