Merge "Fixes incorrect processing of deleting metadata"

This commit is contained in:
Jenkins 2014-04-24 09:08:38 +00:00 committed by Gerrit Code Review
commit 0d2dfaf839
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ class RemoveImageMetadata(tables.DeleteAction):
try:
glance.image_update(request, obj_id, properties={})
except Exception:
exceptions.handle(request, _('Unable to remove metadata'))
exceptions.handle(request, _('Unable to remove metadata'),
redirect='horizon:murano:images:index')
class MarkedImagesTable(tables.DataTable):