Skip to content

Commit

Permalink
#204, #205: Don't log and swallow exception: in 6.0.0 this is used to…
Browse files Browse the repository at this point in the history
… report back in the Future / Promise that is returned from an async send / testConnection invocation
  • Loading branch information
bbottema committed Apr 25, 2019
1 parent a1f621f commit 76289b3
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,7 @@ the proxy bridge server (or connection pool in async mode) while a non-async ema
executor.execute(new Runnable() {
@Override
public void run() {
try {
sendMailClosure(session, email);
} catch (Exception e) {
LOGGER.error("Failed to send email", e);
}
sendMailClosure(session, email);
}

@Override
Expand Down

0 comments on commit 76289b3

Please sign in to comment.