Remove br-tun check from beaker

Currently this check is flapping because the ovs agent is hitting
timeouts when trying to get a response from the neutron-server. This is
likely because we start all the services at the same time and if
neutron-server takes too long to start as well as the exponential
timeout calculations from the ovs agent being to long, the br-tun check
will fail.  Let's comment this out until we can tune the timeouts better
or address the performance issues.

Change-Id: I8158e674775922549eda24115fae0099c740c419
This commit is contained in:
Alex Schultz 2019-03-29 11:05:35 -06:00
parent ba5082d96f
commit d5cc8d3eaa
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ describe 'basic neutron' do
it 'should list OVS bridges' do
shell("ovs-vsctl show") do |r|
expect(r.stdout).to match(/br-int/)
expect(r.stdout).to match(/br-tun/)
# TODO(aschultz): renable this after timeout is sorted
#expect(r.stdout).to match(/br-tun/)
end
end
end