Committed by
Gerrit Code Review
[ONOS-5286]remove update operation in the ovsdb createPort and modify qos table name
Change-Id: Id40a4ebf2e7b28fb1114ca4f73d8fc6c9eda436f
Showing
2 changed files
with
1 additions
and
3 deletions
... | @@ -431,8 +431,6 @@ public class DefaultOvsdbClient implements OvsdbProviderService, OvsdbClientServ | ... | @@ -431,8 +431,6 @@ public class DefaultOvsdbClient implements OvsdbProviderService, OvsdbClientServ |
431 | port.setName(portName); | 431 | port.setName(portName); |
432 | if (portUuid == null) { | 432 | if (portUuid == null) { |
433 | insertConfig(PORT, UUID, BRIDGE, PORTS, bridgeUuid, port.getRow()); | 433 | insertConfig(PORT, UUID, BRIDGE, PORTS, bridgeUuid, port.getRow()); |
434 | - } else { | ||
435 | - updateConfig(PORT, UUID, portUuid, port.getRow()); | ||
436 | } | 434 | } |
437 | } | 435 | } |
438 | 436 | ... | ... |
... | @@ -21,7 +21,7 @@ package org.onosproject.ovsdb.rfc.table; | ... | @@ -21,7 +21,7 @@ package org.onosproject.ovsdb.rfc.table; |
21 | public enum OvsdbTable { | 21 | public enum OvsdbTable { |
22 | INTERFACE("Interface"), BRIDGE("Bridge"), CONTROLLER("Controller"), | 22 | INTERFACE("Interface"), BRIDGE("Bridge"), CONTROLLER("Controller"), |
23 | PORT("Port"), OPENVSWITCH("Open_vSwitch"), FLWTABLE("Flow_Table"), | 23 | PORT("Port"), OPENVSWITCH("Open_vSwitch"), FLWTABLE("Flow_Table"), |
24 | - QOS("Qos"), QUEUE("Queue"), MIRROR("Mirror"), MANAGER("Manager"), | 24 | + QOS("QoS"), QUEUE("Queue"), MIRROR("Mirror"), MANAGER("Manager"), |
25 | NETFLOW("NetFlow"), SSL("SSL"), SFLOW("sFlow"), IPFIX("IPFIX"), | 25 | NETFLOW("NetFlow"), SSL("SSL"), SFLOW("sFlow"), IPFIX("IPFIX"), |
26 | FLOWSAMPLECOLLECTORSET("Flow_Sample_Collector_Set"); | 26 | FLOWSAMPLECOLLECTORSET("Flow_Sample_Collector_Set"); |
27 | 27 | ... | ... |
-
Please register or login to post a comment