[
https://issues.apache.org/jira/browse/IGNITE-8106?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16422788#comment-16422788
]
ASF GitHub Bot commented on IGNITE-8106:
----------------------------------------
GitHub user alamar opened a pull request:
https://github.com/apache/ignite/pull/3735
IGNITE-8106 Collect suppressed exceptions from causes.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/gridgain/apache-ignite ignite-8106
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/ignite/pull/3735.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #3735
----
commit 1421c53bb2fff8a64afdb9719d20794f4890feb1
Author: Ilya Kasnacheev <ilya.kasnacheev@...>
Date: 2018-04-02T17:06:50Z
IGNITE-8106 Collect suppressed exceptions from causes.
----
> In control.sh -active, exception will be eaten and not displayed
> ----------------------------------------------------------------
>
> Key: IGNITE-8106
> URL: https://issues.apache.org/jira/browse/IGNITE-8106
> Project: Ignite
> Issue Type: Bug
> Components: clients
> Affects Versions: 2.5
> Reporter: Ilya Kasnacheev
> Priority: Minor
>
> Here is the relevant code from GridChangeStateCommandHandler:
> {code}
> sb.a(e.getMessage()).a("\n").a("suppressed: \n");
> for (Throwable t:e.getSuppressed())
> sb.a(t.getMessage()).a("\n");
> {code}
> However, before that code the exception will pass through
> IgniteUtils.convertException(), which will wrap the old
> IgniteCheckedException with suppressed parts with a new IgniteException with
> 0 suppressed.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)