Merge "Make server spawn and response times configurable"

This commit is contained in:
Zuul 2018-06-20 11:02:05 +00:00 committed by Gerrit Code Review
commit 3ce2501ca1
3 changed files with 7 additions and 3 deletions

View File

@ -50,7 +50,7 @@ class ZmqClient(object):
and `rows` attributes pointing to lists of cell values.
"""
SERVER_TIMEOUT = 5000 # milliseconds
SERVER_TIMEOUT = CONF['default']['server_response_timeout']
@staticmethod
def to_dict(obj):
@ -114,7 +114,7 @@ class ZmqClient(object):
vbmcd.main([])
# TODO(etingof): perform some more retries
time.sleep(3)
time.sleep(CONF['default']['server_spawn_wait'] / 1000.)
# MQ will deliver the original message to the daemon
# we've started

View File

@ -42,6 +42,8 @@ class VirtualBMCConfig(object):
os.path.expanduser('~'), '.vbmc', 'master.pid'
),
'server_port': 50891,
'server_response_timeout': 5000, # milliseconds
'server_spawn_wait': 3000, # milliseconds
},
'log': {
'logfile': None,

View File

@ -33,7 +33,9 @@ class VirtualBMCConfigTestCase(base.TestCase):
self.config_dict = {'default': {'show_passwords': 'true',
'config_dir': '/foo/bar/1',
'pid_file': '/foo/bar/2',
'server_port': '12345'},
'server_port': '12345',
'server_spawn_wait': 3000,
'server_response_timeout': 5000},
'log': {'debug': 'true', 'logfile': '/foo/bar/4'},
'ipmi': {'session_timeout': '30'}}