Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서승완
/
kappa
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Ryan S. Brown
2015-03-23 19:47:03 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a7f8ddbcbfe1eb5441202c55bd315e5aa6510e6c
a7f8ddbc
1 parent
49ec8c0e
Also handle the UPDATE_ROLLBACK_COMPLETE failure state in `kappa deploy`
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
kappa/stack.py
kappa/stack.py
View file @
a7f8ddb
...
...
@@ -22,7 +22,7 @@ LOG = logging.getLogger(__name__)
class
Stack
(
object
):
completed_states
=
(
'CREATE_COMPLETE'
,
'UPDATE_COMPLETE'
)
failed_states
=
(
'
ROLLBACK_COMPLETE'
,
)
failed_states
=
(
'
UPDATE_ROLLBACK_COMPLETE'
,
'ROLLBACK_COMPLETE'
)
def
__init__
(
self
,
context
,
config
):
self
.
_context
=
context
...
...
Please
register
or
login
to post a comment