Skip to content

Commit

Permalink
temp change to validate winssh connection for itest failures
Browse files Browse the repository at this point in the history
  • Loading branch information
adityakalia committed Aug 23, 2016
1 parent 5e57970 commit 8ba25ab
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,11 @@ public SshConnectionBuilder(String type, ConnectionOptions options, AddressPortM

@Override
public OverthereConnection connect() {
connection.connect();
try {
connection.connect();
} catch (Exception e) {
connection.connect();
}
return connection;
}

Expand Down

0 comments on commit 8ba25ab

Please sign in to comment.