X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=plugin%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fovsdb%2Fplugin%2FConnectionService.java;h=534a94605cdcb393544991a12c664a83fd019616;hb=f6cf705bbea44e417a52b32587ec47670e990fc9;hp=a18592a2f48137ed95e03e5ebabcd4935baff279;hpb=f953056d4180ec1e9672f7810cb4318f6d02ffd7;p=netvirt.git diff --git a/plugin/src/main/java/org/opendaylight/ovsdb/plugin/ConnectionService.java b/plugin/src/main/java/org/opendaylight/ovsdb/plugin/ConnectionService.java index a18592a2f4..534a94605c 100644 --- a/plugin/src/main/java/org/opendaylight/ovsdb/plugin/ConnectionService.java +++ b/plugin/src/main/java/org/opendaylight/ovsdb/plugin/ConnectionService.java @@ -310,7 +310,7 @@ public class ConnectionService implements IPluginInConnectionService, IConnectio inventoryServiceInternal.addNode(connection.getNode(), props); List dbNames = Arrays.asList(Open_vSwitch.NAME.getName()); - ListenableFuture dbSchemaF = null;//todo : fix it up to new structue : connection.getRpc().get_schema(dbNames); + ListenableFuture dbSchemaF = null;//TODO : fix it up to new structue : connection.getRpc().get_schema(dbNames); DatabaseSchema databaseSchema = dbSchemaF.get(); inventoryServiceInternal.updateDatabaseSchema(connection.getNode(), databaseSchema); @@ -323,7 +323,7 @@ public class ConnectionService implements IPluginInConnectionService, IConnectio } } - ListenableFuture monResponse = null; //ashwin(not sure if we need)connection.getRpc().monitor(monitorReq); + ListenableFuture monResponse = null; //TODO : ashwin(not sure if we need)connection.getRpc().monitor(monitorReq); TableUpdates updates = monResponse.get(); if (updates.getError() != null) { logger.error("Error configuring monitor, error : {}, details : {}", @@ -541,5 +541,4 @@ public class ConnectionService implements IPluginInConnectionService, IConnectio public void stolen(Object context, List ids) { // TODO Auto-generated method stub } - }