File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ def default_bd_name
144
144
# This type property can be defined only for one bd
145
145
def fabric_control
146
146
match = config_get ( 'bridge_domain' , 'fabric_control' , bd : @bd_ids )
147
- match == @bd_ids ? true : false
147
+ match . to_s == @bd_ids ? true : false
148
148
end
149
149
150
150
def fabric_control = ( val )
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ loadbalance_multicast_has_vlan:
82
82
_exclude : [N5k, N6k]
83
83
kind : boolean
84
84
auto_default : false
85
- get_command : " show fabricpath load-balance | begin Ftag"
85
+ get_command : " show fabricpath load-balance | begin ignore-case Ftag"
86
86
get_value : ' /^Use VLAN: TRUE/'
87
87
default_value : true
88
88
@@ -93,7 +93,7 @@ loadbalance_multicast_reset:
93
93
loadbalance_multicast_rotate :
94
94
_exclude : [N5k, N6k]
95
95
kind : int
96
- get_command : " show fabricpath load-balance | begin Ftag"
96
+ get_command : " show fabricpath load-balance | begin ignore-case Ftag"
97
97
get_value : ' /^Rotate amount: (\d+)/'
98
98
# default_value: n/a. The default rotate amount is randomized to avoid polarization.
99
99
Original file line number Diff line number Diff line change @@ -62,7 +62,10 @@ packet_size:
62
62
# the n3|9k behavior when the issue is resolved.
63
63
default_value : 0
64
64
N6k : *n5k_default_packet_size
65
- N7k : *n5k_default_packet_size
65
+ # On recent versions, packet size is fixed,
66
+ # so this change will take care of the fix but
67
+ # it could still fail in the older versions.
68
+ N7k : *n3k_default_packet_size
66
69
# On recent versions, packet size is fixed,
67
70
# so this change will take care of the fix but
68
71
# it could still fail in the older versions.
You can’t perform that action at this time.
0 commit comments