Merge "Horizon orchestration pop-up shows redundant error"

This commit is contained in:
Zuul 2023-05-16 14:57:38 +00:00 committed by Gerrit Code Review
commit c4de9faa26
1 changed files with 3 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class ApplyCloudStrategyForm(forms.SelfHandlingForm):
except Exception as ex:
LOG.exception(ex)
redirect = reverse(self.failure_url)
msg = _('Strategy apply failed: "%s".') % str(ex)
msg = _('Strategy apply failed.')
exceptions.handle(request, msg,
redirect=redirect)
return True
@ -272,8 +272,9 @@ class CreateCloudStrategyForm(forms.SelfHandlingForm):
if not response:
messages.error(request, "Strategy creation failed")
except Exception as ex:
LOG.exception(ex)
redirect = reverse(self.failure_url)
msg = _('Strategy creation failed: "%s".') % str(ex)
msg = _('Strategy creation failed.')
exceptions.handle(request, msg,
redirect=redirect)
return True