Skip to content

Commit

Permalink
Issue #84: Don't blindly catch all exceptions in ConnectionWorker to …
Browse files Browse the repository at this point in the history
…allow ConnectionManager to detect agents requiring authentication.
  • Loading branch information
mk23 committed Jan 5, 2016
1 parent 63ec77c commit ac16a0b
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,6 @@ private synchronized void fetchJMXValues() throws SecurityException {
} catch (IOException e) {
host = null;
LOG.error("communication failure with " + url, e);
} catch (Exception e) {
LOG.error("Unexpected error: ", e);
} finally {
if (connection != null) {
try {
Expand Down

0 comments on commit ac16a0b

Please sign in to comment.