Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1555,8 +1555,7 @@ else if (U.millisSinceNanos(joinStartNanos) > spi.joinTimeout)
catch (ClassCastException e) {
// This issue is rarely reproducible on AmazonEC2, but never
// on dedicated machines.
if (log.isDebugEnabled())
U.error(log, "Class cast exception on direct send: " + addr, e);
U.error(log, "Class cast exception on direct send: " + addr, e);

onException("Class cast exception on direct send: " + addr, e);

Expand All @@ -1566,8 +1565,7 @@ else if (U.millisSinceNanos(joinStartNanos) > spi.joinTimeout)
errs.add(e);
}
catch (IOException | IgniteCheckedException e) {
if (log.isDebugEnabled())
log.error("Exception on direct send: " + e.getMessage(), e);
log.error("Exception on direct send: " + e.getMessage(), e);

onException("Exception on direct send: " + e.getMessage(), e);

Expand Down
Loading