Fix fencing action parameter name.

We now call the tripleo-common mistral action with the correct IPMI
level parameter name.

Change-Id: Ic12d3dfe529ee5f26f28e4d3b446e8f7e3ff8fe5
Closes-Bug: #1664568
This commit is contained in:
Chris Jones 2017-02-14 13:34:22 +00:00
parent ffadaee316
commit 81c403a607
2 changed files with 2 additions and 2 deletions

View File

@ -168,6 +168,6 @@ class TestGenerateFencingParameters(utils.TestCommand):
'os_auth': {},
'ipmi_cipher': None,
'ipmi_lanplus': False,
'ipmi_privlvl': None
'ipmi_level': None
},
run_sync=True, save_result=True)

View File

@ -126,7 +126,7 @@ class GenerateFencingParameters(command.Command):
'os_auth': os_auth,
'fence_action': parsed_args.fence_action,
'delay': parsed_args.delay,
'ipmi_privlvl': parsed_args.ipmi_level,
'ipmi_level': parsed_args.ipmi_level,
'ipmi_cipher': parsed_args.ipmi_cipher,
'ipmi_lanplus': parsed_args.ipmi_lanplus,
}