Skip to content

Commit

Permalink
Merge branch 'ah/1483-change-sets' into release-candidate-4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexharv074 committed Jul 6, 2024
2 parents ad6f9b9 + 100159d commit 1af2eb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sceptre/plan/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def execute_change_set(self, change_set_name):

return_val = 0

if status == "FAILED" and self._change_set_failed_no_changes(reason):
if status == "FAILED" and self.change_set_creation_failed_due_to_no_changes(reason):
self.logger.info(
"Skipping ChangeSet on Stack: {} - there are no changes".format(
change_set.get("StackName")
Expand Down Expand Up @@ -626,7 +626,7 @@ def _execute_change_set(self, change_set_name):
status = self._wait_for_completion(boto_response=response)
return status

def _change_set_failed_no_changes(self, reason: str) -> bool:
def change_set_creation_failed_due_to_no_changes(self, reason: str) -> bool:
"""Indicates the change set failed when it was created because there were actually
no changes introduced from the change set.
Expand Down

0 comments on commit 1af2eb6

Please sign in to comment.