[Fullstack] Limit number of Neutron's api workers

Default number of api workers in Neutron is set to be equal to
number of CPU cores on host. That is fine on production environment
but on fullstack tests, where each test spawns own neutron-server
process it might cause host overload.

This patch limits number of api_workers to 2 which should be enough
for single test case and should make significantly lower load on host.

Change-Id: I1e970e35883d5240f0bd30eaea50313d93900580
Closes-Bug: #1750337
This commit is contained in:
Sławek Kapłoński 2018-02-20 09:24:38 +01:00
parent 868b5ede79
commit 465ad6f319
1 changed files with 1 additions and 0 deletions

View File

@ -77,6 +77,7 @@ class NeutronConfigFixture(ConfigFixture):
'password': rabbitmq_environment.password,
'host': rabbitmq_environment.host,
'vhost': rabbitmq_environment.vhost},
'api_workers': 2,
},
'database': {
'connection': connection,