disable keepalive for functional tests

We believe that some of the current race failures in the gate are
because of eventlet vs. requests for our full stack in a process
testing. One of the ways to make this better is turn off keepalive on
eventlet.

Related-Bug: #1686109

Change-Id: Ibdb29274cdf26de74f4ca0cc3bdab622299a91bf
This commit is contained in:
Sean Dague 2017-04-25 10:45:05 -04:00
parent 1106477b78
commit 4542650b23
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ class _IntegratedTestBase(test.TestCase):
# TODO(mriedem): Fix the functional tests to work with Neutron.
self.flags(use_neutron=self.USE_NEUTRON)
self.flags(keep_alive=False, group="wsgi")
nova.tests.unit.image.fake.stub_out_image_service(self)
self._setup_services()