heat engine : fix hardcoded DisableRollback value

Engine API should return the real state of rollback now we
implement it, not hard-code to True

fixes bug 1135963

Change-Id: I6b9e6ea9587fe0c84b57f34bf69c2dcec5d5c09f
This commit is contained in:
Steven Hardy 2013-02-28 16:14:35 +00:00
parent 1d31ef47b5
commit af3e5035d9
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ def format_stack(stack):
STACK_STATUS: stack.state,
STACK_STATUS_DATA: stack.state_description,
STACK_CAPABILITIES: [], # TODO Not implemented yet
STACK_DISABLE_ROLLBACK: True, # TODO Not implemented yet
STACK_DISABLE_ROLLBACK: stack.disable_rollback,
STACK_TIMEOUT: stack.timeout_mins,
}