[SO-BPMN-INFRA] Remove trailing slash from SDNC calls
[so.git] / so-sdn-clients / src / main / java / org / onap / so / client / sdnc / SDNCClient.java
index 7d2fc10..e29d658 100644 (file)
@@ -51,7 +51,7 @@ public class SDNCClient {
      */
     public String post(Object request, SDNCTopology topology) throws MapperException, BadResponseException {
         String jsonRequest = sdnCommonTasks.buildJsonRequest(request);
-        String targetUrl = properties.getHost() + properties.getPath() + ":" + topology.toString() + "/";
+        String targetUrl = properties.getHost() + properties.getPath() + ":" + topology.toString();
         BaseClient<String, LinkedHashMap<String, Object>> STOClient = new BaseClient<>();
 
         STOClient.setTargetUrl(targetUrl);