Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Finkbeiner2011-06-01 18:56:55 +0000
committerRyan D. Brooks2011-06-01 18:56:55 +0000
commit34e3aafd959a50034ea8a8081f221868b4392abf (patch)
treecf1c02f05bad64fe4f875c4134b8347898976ae9 /plugins/org.eclipse.osee.ote.server
parent42525895671661fc14859f2ec109ace0d8d625eb (diff)
downloadorg.eclipse.osee-34e3aafd959a50034ea8a8081f221868b4392abf.tar.gz
org.eclipse.osee-34e3aafd959a50034ea8a8081f221868b4392abf.tar.xz
org.eclipse.osee-34e3aafd959a50034ea8a8081f221868b4392abf.zip
refinement: Give local connectors a public JMS port
Diffstat (limited to 'plugins/org.eclipse.osee.ote.server')
-rw-r--r--plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/OteServiceStarterImpl.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/OteServiceStarterImpl.java b/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/OteServiceStarterImpl.java
index 521e555a475..45792c2d0c3 100644
--- a/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/OteServiceStarterImpl.java
+++ b/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/internal/OteServiceStarterImpl.java
@@ -94,11 +94,11 @@ public class OteServiceStarterImpl implements OteServiceStarter, ServiceInfoPopu
String addressAsString = getAddress();
int port = getServerPort();
String strUri = String.format("tcp://%s:%d", addressAsString, port);
- if (propertyParameter.isLocalConnector()) {
- strUri = "vm://localhost?broker.persistent=false";
- } else {
+// if (propertyParameter.isLocalConnector()) {
+// strUri = "vm://localhost?broker.persistent=false";
+// } else {
brokerService.addConnector(strUri);
- }
+// }
brokerService.setEnableStatistics(false);
brokerService.setBrokerName("OTEServer");
brokerService.setPersistent(false);

Back to the top