Skip to content

Commit e39aa1c

Browse files
author
DongRyeol Cha
committed
Fixed that the stp enable column name
The ovs vswitchd manual said that the stp enable column name is stp_enable. But onos's implementation is stpenable. Please refers to following document. http://www.openvswitch.org//ovs-vswitchd.conf.db.5.pdf Change-Id: I10973a7c880d27ccef63b9f2e6730272b4280124
1 parent 080969a commit e39aa1c

File tree

1 file changed

+1
-1
lines changed
  • protocols/ovsdb/rfc/src/main/java/org/onosproject/ovsdb/rfc/table

1 file changed

+1
-1
lines changed

protocols/ovsdb/rfc/src/main/java/org/onosproject/ovsdb/rfc/table/Bridge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class Bridge extends AbstractOvsdbTableService {
3636
*/
3737
public enum BridgeColumn {
3838
NAME("name"), DATAPATHTYPE("datapath_type"), DATAPATHID("datapath_id"),
39-
STPENABLE("stpenable"), PORTS("ports"), MIRRORS("mirrors"),
39+
STPENABLE("stp_enable"), PORTS("ports"), MIRRORS("mirrors"),
4040
NETFLOW("netflow"), SFLOW("sflow"), IPFIX("ipfix"),
4141
CONTROLLER("controller"), PROTOCOLS("protocols"),
4242
FAILMODE("fail_mode"), STATUS("status"), OTHERCONFIG("other_config"),

0 commit comments

Comments
 (0)