AT&T 1712 and 1802 release code
[so.git] / common / src / main / java / org / openecomp / mso / client / dmaap / rest / RestPublisher.java
@@ -41,7 +41,7 @@ public class RestPublisher implements Publisher {
        
        private URL createURL(PropertiesBean properties) {
                try {
-                       return UriBuilder.fromUri("http://" + properties.getHost())
+                       return UriBuilder.fromUri(properties.getHost())
                                        .path("events").path(properties.getTopic())
                                        .queryParam("timeout",  properties.getTimeout()).build().toURL();
                } catch (MalformedURLException e) {