We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前nacos-sdk-csharp 使用grpc模式发布配置会因参数中additionMap中的value值为null,在r-nacos服务侧解析失败。
调整r-nacos 参数addition_map字段的类型从Option<HashMap<String,String>>到Option<HashMap<String,Option<String>>>,以支持value值为null。
Option<HashMap<String,String>>
Option<HashMap<String,Option<String>>>
之前因nacos-sdk-csharp在 MacOS arm64系统中不支持开启grpc模式,当时没能验证nacos-sdk-csharp grpc的兼容性。
最近发现nacos-sdk-csharp已支持在MacOS arm64启用grpc,然后做了测试验证,发现存在这个问题。
The text was updated successfully, but these errors were encountered:
兼容nacos-sdk-csharp中的grpc发布配置接口; #162
f445199
good
Sorry, something went wrong.
3bd7d94
在v0.6.5版本已处理。
No branches or pull requests
目前nacos-sdk-csharp 使用grpc模式发布配置会因参数中additionMap中的value值为null,在r-nacos服务侧解析失败。
调整r-nacos 参数addition_map字段的类型从
Option<HashMap<String,String>>
到Option<HashMap<String,Option<String>>>
,以支持value值为null。之前因nacos-sdk-csharp在 MacOS arm64系统中不支持开启grpc模式,当时没能验证nacos-sdk-csharp grpc的兼容性。
最近发现nacos-sdk-csharp已支持在MacOS arm64启用grpc,然后做了测试验证,发现存在这个问题。
The text was updated successfully, but these errors were encountered: