Merge pull request #12 from ryansb/fixCfnStates
Handle the UPDATE_ROLLBACK_COMPLETE failure state in `kappa deploy`
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -22,7 +22,7 @@ LOG = logging.getLogger(__name__) | ... | @@ -22,7 +22,7 @@ LOG = logging.getLogger(__name__) |
22 | class Stack(object): | 22 | class Stack(object): |
23 | 23 | ||
24 | completed_states = ('CREATE_COMPLETE', 'UPDATE_COMPLETE') | 24 | completed_states = ('CREATE_COMPLETE', 'UPDATE_COMPLETE') |
25 | - failed_states = ('ROLLBACK_COMPLETE',) | 25 | + failed_states = ('UPDATE_ROLLBACK_COMPLETE', 'ROLLBACK_COMPLETE') |
26 | 26 | ||
27 | def __init__(self, context, config): | 27 | def __init__(self, context, config): |
28 | self._context = context | 28 | self._context = context | ... | ... |
-
Please register or login to post a comment