Merge "Fix update of OS::Heat::UpdateWaitConditionHandle"

This commit is contained in:
Zuul 2024-03-25 09:32:18 +00:00 committed by Gerrit Code Review
commit 80eea85194
2 changed files with 7 additions and 1 deletions

View File

@ -233,7 +233,8 @@ class UpdateWaitConditionHandle(aws_wch.WaitConditionHandle):
support_status = support.SupportStatus(version='2014.1')
def update(self, after, before=None, prev_resource=None):
def update(self, after, before=None, prev_resource=None,
new_template_id=None, new_requires=None):
raise resource.UpdateReplace(self.name)

View File

@ -0,0 +1,5 @@
---
features:
- |
Fixed the ``OS::Heat::UpdateWaitConditionHandle`` resource type, which
caused stack update to fail consistently.