Skip to content
This repository has been archived by the owner on Dec 5, 2018. It is now read-only.

Commit

Permalink
Merge pull request jenkinsci#152 from guss77/patch-1
Browse files Browse the repository at this point in the history
Don't hide connection errors
  • Loading branch information
francisu committed Jun 28, 2015
2 parents 7148c8c + cae5ad3 commit 649d44d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/hudson/plugins/ec2/win/WinConnection.java
Expand Up @@ -119,6 +119,7 @@ public boolean ping() {
test.connect();
return true;
} catch (Exception e) {
log.log(Level.WARNING, "Failed to verify connectivity to Windows slave", e);
return false;
}
}
Expand Down

0 comments on commit 649d44d

Please sign in to comment.