sick-cat commented on issue #13665:
URL: https://github.com/apache/dubbo/issues/13665#issuecomment-1892140466
debug发现应该是
`org.apache.dubbo.rpc.protocol.rest.extension.resteasy.ResteasyContext#addResponseHeaders`
引起的错误
```java
for (Map.Entry<String, List<Object>> entry : headers.entrySet()) {
String key = entry.getKey();
if (entry.getValue() == null) {
continue;
}
response.addOutputHeaders(key, entry.getValue().toString());
}
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]