Merge "Fail build on checkstyle errors"
[ovsdb.git] / southbound / southbound-impl / src / main / java / org / opendaylight / ovsdb / southbound / transactions / md / OvsdbOperationalCommandAggregator.java
index b7ecd32bd9b55d7d5cad74c8fe3dd2f3f1471cc1..8b76369cbdbb44b3c994ece7cf41b331fc45c481 100644 (file)
@@ -18,11 +18,12 @@ public class OvsdbOperationalCommandAggregator implements TransactionCommand {
         commands.add(new OvsdbBridgeRemovedCommand(key, updates,  dbSchema));
         commands.add(new OvsdbPortUpdateCommand(key, updates, dbSchema));
         commands.add(new OvsdbPortRemoveCommand(key, updates, dbSchema));
+        commands.add(new OpenVSwitchUpdateCommand(key, updates, dbSchema));
     }
 
     @Override
     public void execute(ReadWriteTransaction transaction) {
-        for(TransactionCommand command: commands) {
+        for (TransactionCommand command: commands) {
             command.execute(transaction);
         }
     }