Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2016-09-12 18:46:31 +0000
committerdonald.g.dunne2016-09-12 18:46:31 +0000
commitf974d7d5d6927da7ff7b62aca0e5b66e6aa90b04 (patch)
tree26055a8a88d2ec16a3a1e0c2862c7a0104460b16 /plugins/org.eclipse.osee.orcs.rest.client
parent1242921c136e86dd26d578fa70caadc1aaa72ac5 (diff)
downloadorg.eclipse.osee-f974d7d5d6927da7ff7b62aca0e5b66e6aa90b04.tar.gz
org.eclipse.osee-f974d7d5d6927da7ff7b62aca0e5b66e6aa90b04.tar.xz
org.eclipse.osee-f974d7d5d6927da7ff7b62aca0e5b66e6aa90b04.zip
refinement: Specify default app server url
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.rest.client')
-rw-r--r--plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java b/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java
index da6b13ce95b..4f014398bd5 100644
--- a/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java
+++ b/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java
@@ -79,7 +79,7 @@ public class OseeClientImpl implements OseeClient, QueryExecutor {
client = JaxRsClient.newBuilder().properties(properties).build();
String address = properties != null ? (String) properties.get(OSEE_APPLICATION_SERVER) : null;
if (address == null) {
- address = System.getProperty(OSEE_APPLICATION_SERVER, "");
+ address = System.getProperty(OSEE_APPLICATION_SERVER, "http://localhost:8089");
}
if (Strings.isValid(address)) {
baseUri = UriBuilder.fromUri(address).path("orcs").build();

Back to the top