Remove OvsdbConfigurationService
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / SouthboundHandler.java
index 3f5108ef05ccca2f7e65cdf4f6599ee122db0482..7e06da72f8eee0debc7ede8b0c3038a5580e7efa 100644 (file)
@@ -36,7 +36,6 @@ public class SouthboundHandler extends AbstractHandler
     private volatile BridgeConfigurationManager bridgeConfigurationManager;
     private volatile TenantNetworkManager tenantNetworkManager;
     private volatile NetworkingProviderManager networkingProviderManager;
-    private volatile OvsdbConfigurationService ovsdbConfigurationService;
     private volatile OvsdbConnectionService connectionService;
     private volatile NeutronL3Adapter neutronL3Adapter;
 
@@ -44,6 +43,10 @@ public class SouthboundHandler extends AbstractHandler
         this.triggerUpdates();
     }
 
+    void init() {
+        logger.info(">>>>>> init {}", this.getClass());
+    }
+
     private SouthboundEvent.Type ovsdbTypeToSouthboundEventType(OvsdbType ovsdbType) {
         SouthboundEvent.Type type = SouthboundEvent.Type.NODE;
 
@@ -305,7 +308,7 @@ public class SouthboundHandler extends AbstractHandler
     }
 
     private void processBridgeUpdate(Node node, Action action) {
-        OvsdbBridgeAugmentation bridge = MdsalUtils.getBridge(node);
+        OvsdbBridgeAugmentation bridge = MdsalUtils.readBridge(node);
         switch (action) {
             case ADD:
             case UPDATE: