Update MRI projects for Aluminium
[openflowplugin.git] / applications / bulk-o-matic / src / main / java / org / opendaylight / openflowplugin / applications / bulk / o / matic / TableWriter.java
index 54f7906b970b6fe80122657d6007afdb1c70e61c..1e2bc3a5a0ab864d670c7c38af4ed1dd63becd3b 100644 (file)
@@ -91,7 +91,7 @@ public class TableWriter implements FlowCounterMBean {
                     InstanceIdentifier<Table> tableIId = BulkOMaticUtils.getTableId(tableId, dpId);
 
                     if (isAdd) {
-                        wtx.put(LogicalDatastoreType.CONFIGURATION, tableIId, table, true);
+                        wtx.mergeParentStructurePut(LogicalDatastoreType.CONFIGURATION, tableIId, table);
                     } else {
                         wtx.delete(LogicalDatastoreType.CONFIGURATION, tableIId);
                     }