From 29bf80d11209d1c4294cd0738f288e65f1be4a41 Mon Sep 17 00:00:00 2001 From: 6092002067 Date: Tue, 14 Mar 2017 19:12:07 +0800 Subject: Add UT for actions Issue-ID: HOLMES-50 Change-Id: I295a72e8a8b522e48e43b8ee32152bdf71656e4d Signed-off-by: youbowu --- .../src/main/java/org/openo/holmes/common/utils/MSBRegisterUtil.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'holmes-actions/src/main/java') 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()); -- cgit 1.2.3-korg