You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ja...@apache.org on 2012/08/09 12:07:16 UTC

svn commit: r1371134 - /ace/sandbox/marrs/org.apache.ace.client.rest/src/org/apache/ace/client/rest/RESTClientServlet.java

Author: jawi
Date: Thu Aug  9 10:07:15 2012
New Revision: 1371134

URL: http://svn.apache.org/viewvc?rev=1371134&view=rev
Log:
Add trailing slash for default OBR url.

Modified:
    ace/sandbox/marrs/org.apache.ace.client.rest/src/org/apache/ace/client/rest/RESTClientServlet.java

Modified: ace/sandbox/marrs/org.apache.ace.client.rest/src/org/apache/ace/client/rest/RESTClientServlet.java
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/org.apache.ace.client.rest/src/org/apache/ace/client/rest/RESTClientServlet.java?rev=1371134&r1=1371133&r2=1371134&view=diff
==============================================================================
--- ace/sandbox/marrs/org.apache.ace.client.rest/src/org/apache/ace/client/rest/RESTClientServlet.java (original)
+++ ace/sandbox/marrs/org.apache.ace.client.rest/src/org/apache/ace/client/rest/RESTClientServlet.java Thu Aug  9 10:07:15 2012
@@ -141,7 +141,7 @@ public class RESTClientServlet extends H
         synchronized (m_workspaces) {
             m_useAuthentication = Boolean.valueOf(useAuth);
             m_repositoryURL = getProperty(properties, KEY_REPOSITORY_URL, "http://localhost:8080/repository");
-            m_obrURL = getProperty(properties, KEY_OBR_URL, "http://localhost:8080/obr");
+            m_obrURL = getProperty(properties, KEY_OBR_URL, "http://localhost:8080/obr/");
             m_customerName = getProperty(properties, KEY_CUSTOMER_NAME, "apache");
             m_storeRepositoryName = getProperty(properties, KEY_STORE_REPOSITORY_NAME, "shop");
             m_targetRepositoryName = getProperty(properties, KEY_DISTRIBUTION_REPOSITORY_NAME, "target");