Wait for OVS to reconfigure when creating PUBLIC_BRIDGE
The '--no-wait' flag will not wait for ovs-vswitchd to reconfigure after changes have been made to the database. This causes a race condition as the bridge may or may not be up when 'ip addr flush dev $PUBLIC_BRIDGE' is called. This commit removes the '--no-wait' flag which is safe as the openvswitch services are already started earlier in stack.sh Change-Id: I73ef1b731295d03b0f064c5f786196284c3e39ce Closes-bug: #1328962
This commit is contained in:
parent
1469a04f18
commit
f60e8c0fbe
@ -65,8 +65,9 @@ function _neutron_ovs_base_configure_l3_agent {
|
|||||||
iniset $Q_L3_CONF_FILE DEFAULT external_network_bridge $PUBLIC_BRIDGE
|
iniset $Q_L3_CONF_FILE DEFAULT external_network_bridge $PUBLIC_BRIDGE
|
||||||
|
|
||||||
neutron-ovs-cleanup
|
neutron-ovs-cleanup
|
||||||
sudo ovs-vsctl --no-wait -- --may-exist add-br $PUBLIC_BRIDGE
|
# --no-wait causes a race condition if $PUBLIC_BRIDGE is not up when ip addr flush is called
|
||||||
sudo ovs-vsctl --no-wait br-set-external-id $PUBLIC_BRIDGE bridge-id $PUBLIC_BRIDGE
|
sudo ovs-vsctl -- --may-exist add-br $PUBLIC_BRIDGE
|
||||||
|
sudo ovs-vsctl br-set-external-id $PUBLIC_BRIDGE bridge-id $PUBLIC_BRIDGE
|
||||||
# ensure no IP is configured on the public bridge
|
# ensure no IP is configured on the public bridge
|
||||||
sudo ip addr flush dev $PUBLIC_BRIDGE
|
sudo ip addr flush dev $PUBLIC_BRIDGE
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user