ptupitsyn commented on a change in pull request #8169:
URL: https://github.com/apache/ignite/pull/8169#discussion_r473829077
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/ClientRequestHandler.java
##########
@@ -115,7 +116,7 @@
int status = e instanceof IgniteClientException ?
((IgniteClientException)e).statusCode() : ClientStatus.FAILED;
- return new ClientResponse(req.requestId(), status, e.getMessage());
+ return new ClientResponse(req.requestId(), status,
X.getFullStackTrace(e));
Review comment:
Then the message should be fixed. We absolutely can not pass server
stack traces to the clients.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]