From 946fd9e3c7700dbd0df9924a70c0fa5477db981e Mon Sep 17 00:00:00 2001 From: Michael Vorburger Date: Thu, 1 Nov 2018 13:59:40 +0100 Subject: [PATCH] minor clean-up after previous change Change-Id: I524dd9b77722a9ffdef0551e85f2fdaa18b17f7b Signed-off-by: Michael Vorburger --- features/production/odl-neutron-northbound-api/pom.xml | 6 ------ .../northbound/impl/PortStatusUpdateInitializer.java | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/features/production/odl-neutron-northbound-api/pom.xml b/features/production/odl-neutron-northbound-api/pom.xml index 08944b918..1ccfea26e 100644 --- a/features/production/odl-neutron-northbound-api/pom.xml +++ b/features/production/odl-neutron-northbound-api/pom.xml @@ -58,12 +58,6 @@ xml features - - org.opendaylight.infrautils - odl-infrautils-inject - xml - features - org.opendaylight.aaa odl-aaa-shiro diff --git a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/impl/PortStatusUpdateInitializer.java b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/impl/PortStatusUpdateInitializer.java index 271477f57..597f1bae1 100644 --- a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/impl/PortStatusUpdateInitializer.java +++ b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/impl/PortStatusUpdateInitializer.java @@ -58,7 +58,7 @@ public class PortStatusUpdateInitializer { try { Optional res = jsonRestconfService.invokeRpc( "sal-remote:create-data-change-event-subscription", Optional.of(SUBSCRIBE_JSON)); - LOG.info("create-data-change-event-subscription returned {}", res.toString()); + LOG.info("create-data-change-event-subscription returned {}", res); } catch (OperationFailedException e) { LOG.error("exception while calling create-data-change-event-subscription", e); } @@ -72,7 +72,7 @@ public class PortStatusUpdateInitializer { Optional res = null; try { res = jsonRestconfService.subscribeToStream(identifier, map); - LOG.info("subscribeToStream returned {}", res.toString()); + LOG.info("subscribeToStream returned {}", res); } catch (OperationFailedException e) { LOG.error("exception while calling subscribeToStream", e); } -- 2.36.6