Skip to content

Commit

Permalink
adding more states as successful
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnfaherty committed Jun 4, 2019
1 parent 921f831 commit 2f196ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion servicecatalog_puppet/luigi_tasks_and_targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def run(self):
logger.info(
f"[{self.launch_name}] {self.account_id}:{self.region} :: current cfn stack_status is "
f"{stack_status}")
if stack_status != "UPDATE_COMPLETE":
if stack_status not in ["UPDATE_COMPLETE", "CREATE_COMPLETE"]:
raise Exception(
f"[{self.launch_name}] {self.account_id}:{self.region} :: current cfn stack_status is "
f"{stack_status}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="aws-service-catalog-puppet",
version="0.1.2",
version="0.1.3",
author="Eamonn Faherty",
author_email="[email protected]",
description="Making it easier to deploy ServiceCatalog products",
Expand Down

0 comments on commit 2f196ff

Please sign in to comment.