Merge "Increase number of concurrent_connections to nvp"
This commit is contained in:
commit
b94a602528
@ -78,9 +78,9 @@
|
||||
# Maximum number of ports for each overlay (stt, gre) logical switch
|
||||
# max_lp_per_overlay_ls = 256
|
||||
|
||||
# Number of connects to each controller node.
|
||||
# default is 5
|
||||
# concurrent_connections = 3
|
||||
# Number of connections to each controller node.
|
||||
# default is 10
|
||||
# concurrent_connections = 10
|
||||
|
||||
# Number of seconds a generation id should be valid for (default -1 meaning do not time out)
|
||||
# nvp_gen_timeout = -1
|
||||
|
@ -61,7 +61,7 @@ class NVPApiHelper(client_eventlet.NvpApiClientEventlet):
|
||||
|
||||
def __init__(self, api_providers, user, password, request_timeout,
|
||||
http_timeout, retries, redirects,
|
||||
concurrent_connections=3, nvp_gen_timeout=-1):
|
||||
concurrent_connections=10, nvp_gen_timeout=-1):
|
||||
'''Constructor.
|
||||
|
||||
:param api_providers: a list of tuples in the form:
|
||||
|
@ -36,8 +36,9 @@ nvp_opts = [
|
||||
cfg.IntOpt('max_lp_per_overlay_ls', default=256,
|
||||
help=_("Maximum number of ports of a logical switch on an "
|
||||
"overlay transport zone (default 256)")),
|
||||
cfg.IntOpt('concurrent_connections', default=5,
|
||||
help=_("Maximum concurrent connections")),
|
||||
cfg.IntOpt('concurrent_connections', default=10,
|
||||
help=_("Maximum concurrent connections to each NVP "
|
||||
"controller.")),
|
||||
cfg.IntOpt('nvp_gen_timeout', default=-1,
|
||||
help=_("Number of seconds a generation id should be valid for "
|
||||
"(default -1 meaning do not time out)")),
|
||||
|
@ -124,7 +124,7 @@ class ConfigurationTest(testtools.TestCase):
|
||||
def test_defaults(self):
|
||||
self.assertEqual(5000, cfg.CONF.NVP.max_lp_per_bridged_ls)
|
||||
self.assertEqual(256, cfg.CONF.NVP.max_lp_per_overlay_ls)
|
||||
self.assertEqual(5, cfg.CONF.NVP.concurrent_connections)
|
||||
self.assertEqual(10, cfg.CONF.NVP.concurrent_connections)
|
||||
self.assertEqual('access_network', cfg.CONF.NVP.metadata_mode)
|
||||
self.assertEqual('stt', cfg.CONF.NVP.default_transport_type)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user