Configurable Keystone admin workers

The API_WORKERS option wasn't setting the number of admin workers
for the Keystone server when running in eventlet mode. This will
allow for control of throughput and memory usage.

Change-Id: Iecbce4a601f93784164e53d8b0c542d48f7b5650
This commit is contained in:
Brant Knudson 2014-09-13 14:49:24 -05:00 committed by Dean Troyer
parent 106b379741
commit 85a17ea1de

@ -293,6 +293,9 @@ function configure_keystone {
fi
iniset $KEYSTONE_CONF DEFAULT max_token_size 16384
iniset $KEYSTONE_CONF DEFAULT admin_workers "$API_WORKERS"
# Public workers will use the server default, typically number of CPU.
}
function configure_keystone_extensions {