Skip to content

Commit a3e4405

Browse files
committed
Merge branch 'master' into restcomm-1327
2 parents 5a85144 + f3ec3fe commit a3e4405

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

restcomm/restcomm.commons/src/main/java/org/restcomm/connect/commons/util/JBossConnectorDiscover.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ public HttpConnectorList findConnectors() throws MalformedObjectNameException, N
6464
LOG.info("JBoss Connectors found:" + jbossObjs.size());
6565
for (ObjectName obj : jbossObjs) {
6666
Boolean bound = (Boolean) mbs.getAttribute(obj, "bound");
67-
String scheme = mbs.getAttribute(obj, "name").toString().replaceAll("\"", "");
68-
Integer port = (Integer) mbs.getAttribute(obj, "boundPort");
69-
String address = ((String) mbs.getAttribute(obj, "boundAddress")).replaceAll("\"", "");
70-
if (LOG.isInfoEnabled()) {
71-
LOG.info("Jboss Http Connector: " + scheme + "://" + address + ":" + port);
72-
}
7367
if (bound) {
68+
String scheme = mbs.getAttribute(obj, "name").toString().replaceAll("\"", "");
69+
Integer port = (Integer) mbs.getAttribute(obj, "boundPort");
70+
String address = ((String) mbs.getAttribute(obj, "boundAddress")).replaceAll("\"", "");
71+
if (LOG.isInfoEnabled()) {
72+
LOG.info("Jboss Http Connector: " + scheme + "://" + address + ":" + port);
73+
}
7474
HttpConnector httpConnector = new HttpConnector(scheme, address, port, scheme.equalsIgnoreCase("https"));
7575
endPoints.add(httpConnector);
7676
} else {

restcomm/restcomm.docs/sources-asciidoc/src/main/asciidoc/api/extensions-multiprovider-configuration.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
=== High Level Operation
77

88
The Multiprovider extension allows per account SMS and Voice routing.
9-
9+
10+
IMPORTANT: The MultiProvider feature is available only to Commercial users of Restcomm Connect.
1011
IMPORTANT: This REST API is only accessible by the super-admin.
1112

1213

restcomm/restcomm.docs/sources-asciidoc/src/main/asciidoc/api/index.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@ Restcomm Accounts have the following subresources. Click on a link to read the A
4040
* <<gateway-api.adoc#gateways,Restcomm API – Gateway>>
4141
* <<monitoring-service.adoc#monitoring, Restcomm API - Supervisor/Monitoring Service>>
4242
* <<outbound-proxy-api.adoc#outbound-proxy,Restcomm API – OutboundProxy>>
43+
* <<extensions-multiprovider-configuration.adoc,Restcomm API – MultiProvider Extension Configuration>>

0 commit comments

Comments
 (0)