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:
Haiwei Xu
2015-06-25 11:38:18 +09:00
parent 720dc751ac
commit 608589c916

View File

@@ -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),