Merge pull request #549 from gnuoy/fix-ovn-dedicateed-chassis-deferred
Fix bug caused by disable-mlockall being unset
This commit is contained in:
@@ -487,5 +487,5 @@ class OVNDedicatedChassisDeferredRestartTest(
|
||||
:rtype: (str, bool)
|
||||
"""
|
||||
app_config = zaza.model.get_application_config(self.application_name)
|
||||
new_value = str(not app_config['disable-mlockall']['value'])
|
||||
new_value = str(not app_config['disable-mlockall'].get('value', False))
|
||||
return 'disable-mlockall', new_value
|
||||
|
||||
Reference in New Issue
Block a user