Merge "Explicitly pass error kwarg in nested StackValidationFailed"

This commit is contained in:
Zuul
2023-01-25 19:43:16 +00:00
committed by Gerrit Code Review

View File

@@ -78,7 +78,7 @@ class StackResource(resource.Resource):
except Exception as ex:
path = "%s<%s>" % (self.name, self.template_url)
raise exception.StackValidationFailed(
ex, path=[self.stack.t.RESOURCES, path])
error=ex, path=[self.stack.t.RESOURCES, path])
@property
def template_url(self):