Merge "Fix join of status_reason"

This commit is contained in:
Zuul 2020-03-19 17:09:13 +00:00 committed by Gerrit Code Review
commit ce70da25ad
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ class HeatPoller(object):
reasons = ["%s failed" % (ns.name)
for ns in ng_statuses
if ns.status.endswith(FAILED)]
self.cluster.status_reason = ' ,'.join(reasons)
self.cluster.status_reason = ', '.join(reasons)
self.cluster.save()