Skip to content

Commit

Permalink
Merge origin/master
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Dec 26, 2023
2 parents d388c9f + cda0867 commit e36f24f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,12 @@ public boolean isSikuliServerReachableOnNode(Session session) {
}

if (connection == null || connection.getResponseCode() != 200) {
LOG.warn("Responce code different from 200 when calling '"+urlToConnect+"'");
return false;
}

} catch (IOException ex) {
LOG.warn(ex,ex);
LOG.warn("Exception catch when calling '"+urlToConnect+"' "+ex,ex);
return false;
} finally {
if (os != null) {
Expand Down

0 comments on commit e36f24f

Please sign in to comment.