Fix error message from share server API
Fixing share server api error message when share network does not exist. Closes-bug: #2025649 Change-Id: I19a2f7dbb2375b2d3a281efa673da986f29aa9d6
This commit is contained in:
parent
3b9cfe126f
commit
456b90898f
@ -95,9 +95,8 @@ class ShareServerController(wsgi.Controller):
|
|||||||
except exception.ShareServerNotFound as e:
|
except exception.ShareServerNotFound as e:
|
||||||
raise exc.HTTPNotFound(explanation=e.msg)
|
raise exc.HTTPNotFound(explanation=e.msg)
|
||||||
except exception.ShareNetworkNotFound:
|
except exception.ShareNetworkNotFound:
|
||||||
msg = _("Share server %s could not be found. Its associated "
|
msg = _("Share server could not be found. Its associated share "
|
||||||
"share network does not "
|
"network %s does not exist.") % server['share_network_id']
|
||||||
"exist.") % server['share_network_id']
|
|
||||||
raise exc.HTTPNotFound(explanation=msg)
|
raise exc.HTTPNotFound(explanation=msg)
|
||||||
return self._view_builder.build_share_server(req, server)
|
return self._view_builder.build_share_server(req, server)
|
||||||
|
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
`bug #2025649
|
||||||
|
<https://bugs.launchpad.net/manila/+bug/2025649>`_: Fixed share
|
||||||
|
server API error message.
|
Loading…
Reference in New Issue
Block a user