Merging in bug fixes
[appc.git] / appc-dg / appc-dg-shared / appc-dg-mdsal-store / src / main / java / org / openecomp / appc / mdsal / operation / ConfigOperationRequestFormatter.java
index d5d6a0c..94e120f 100644 (file)
@@ -42,7 +42,7 @@ public class ConfigOperationRequestFormatter {
      */
     public String buildPath(URL url,String module, String containerName , String... subModules ) {
 
-        StringBuilder path = new StringBuilder( url.getPath()+ Constants.URL_BACKSLASH + module + ":"+containerName + Constants.URL_BACKSLASH);
+        StringBuilder path = new StringBuilder( Constants.CONFIG_PATH + Constants.URL_BACKSLASH + module + ":"+containerName + Constants.URL_BACKSLASH);
         if(subModules.length >0){
             for(String subModule : subModules){
                 path.append(subModule);