Github user yvsubhash commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1761#discussion_r88429916 --- Diff: core/src/com/cloud/agent/api/CheckS2SVpnConnectionsAnswer.java --- @@ -76,4 +76,14 @@ public String getDetail(String ip) { } return null; } + + public boolean isIPPresent(String ip) { + if (this.getResult()) { + Boolean status = ipToConnected.get(ip); + if (status != null) { --- End diff -- Yes The check to see whether ip is there in the response. So it should be true even when status is false
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---