Disable rollback by default
Currently heat disables rollback by default when create/update stack fails. Senlin should keep in consistence with heat. Change-Id: Id9760abfda5197f52c5615890c7013f384d5ccc7 Partil-Bug: #1466352
This commit is contained in:
@@ -166,7 +166,7 @@ def process_stack_spec(spec):
|
||||
|
||||
new_spec = {
|
||||
# TODO(Qiming): add context support
|
||||
'disable_rollback': spec.get('disable_rollback', False),
|
||||
'disable_rollback': spec.get('disable_rollback', True),
|
||||
'context': spec.get('context', {}),
|
||||
'parameters': spec.get('parameters', {}),
|
||||
'timeout': spec.get('timeout', 60),
|
||||
|
||||
Reference in New Issue
Block a user