X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=holmes-actions%2Fsrc%2Fmain%2Fjava%2Forg%2Fopeno%2Fholmes%2Fcommon%2Futils%2FMSBRegisterUtil.java;h=91e28a6885cc1e4562ebcd3961aaed70cbac03e9;hb=29bf80d11209d1c4294cd0738f288e65f1be4a41;hp=e18a15ccf02586af6b597dd60ab49551c9415eea;hpb=e9d903e5f0c762e11d443994eac2ced51afbe3e3;p=holmes%2Fcommon.git diff --git a/holmes-actions/src/main/java/org/openo/holmes/common/utils/MSBRegisterUtil.java b/holmes-actions/src/main/java/org/openo/holmes/common/utils/MSBRegisterUtil.java index e18a15c..91e28a6 100644 --- a/holmes-actions/src/main/java/org/openo/holmes/common/utils/MSBRegisterUtil.java +++ b/holmes-actions/src/main/java/org/openo/holmes/common/utils/MSBRegisterUtil.java @@ -19,7 +19,6 @@ package org.openo.holmes.common.utils; import com.eclipsesource.jaxrs.consumer.ConsumerFactory; import java.io.IOException; import lombok.extern.slf4j.Slf4j; -import org.glassfish.jersey.client.ClientConfig; import org.jvnet.hk2.annotations.Service; import org.openo.holmes.common.api.entity.ServiceRegisterEntity; import org.openo.holmes.common.config.MicroServiceConfig; @@ -49,12 +48,11 @@ public class MSBRegisterUtil { } private boolean inner_register(ServiceRegisterEntity entity) { - ClientConfig config = new ClientConfig(); try { log.info("msbServerAddr:" + MicroServiceConfig.getMsbServerAddr()); log.info("entity:" + entity); MicroserviceBusRest resourceserviceproxy = ConsumerFactory.createConsumer( - MicroServiceConfig.getMsbServerAddr(), config, MicroserviceBusRest.class); + MicroServiceConfig.getMsbServerAddr(), MicroserviceBusRest.class); resourceserviceproxy.registerServce("false", entity); } catch (Exception error) { log.error("microservice register failed!" + error.getMessage());