bug 8257 handling back to back mcast mac updates
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transact / LogicalSwitchRemoveCommand.java
index 0dadf6792b23253cc68b6ca9ab5b0693276dbf3f..48abea1481e8157e664bf50affad6fe50afcf0cb 100644 (file)
@@ -104,4 +104,9 @@ public class LogicalSwitchRemoveCommand extends AbstractTransactCommand<LogicalS
     protected boolean areEqual(LogicalSwitches a , LogicalSwitches b) {
         return a.getKey().equals(b.getKey()) && Objects.equals(a.getTunnelKey(), b.getTunnelKey());
     }
+
+    @Override
+    protected boolean isRemoveCommand() {
+        return true;
+    }
 }