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
Server can't get "remote.application" key from attachment.
1.client, dubbo-go v3.2.0-rc2
atm := make(map[string]interface{}) atm["key1"] = "value1" atm["remote.application"] = "appname" atm["remote.application2"] = "appname" ctx1 := context.WithValue(context.Background(), v3constant.AttachmentKey, atm)
2.server:
Map<String, Object> serverAttachments = RpcContext.getServerAttachment().getObjectAttachments(); System.out.println("ContextService serverAttachments:" + JSON.toJSONString(serverAttachments));
{ "key1": "value1", "retries": "", "remote.application2": "appname" }
"remote.application" key is null
The text was updated successfully, but these errors were encountered:
zhangcunli 反馈:如果把 “remote.application” 发送到 dubbo 端,这个 attachment 就丢失了
Sorry, something went wrong.
No branches or pull requests
Environment
Issue description
Server can't get "remote.application" key from attachment.
Logs
1.client, dubbo-go v3.2.0-rc2
2.server:
The text was updated successfully, but these errors were encountered: