diff --git a/manila/api/v1/share_servers.py b/manila/api/v1/share_servers.py index 51edd15de5..63fb1c1a9f 100644 --- a/manila/api/v1/share_servers.py +++ b/manila/api/v1/share_servers.py @@ -95,9 +95,8 @@ class ShareServerController(wsgi.Controller): except exception.ShareServerNotFound as e: raise exc.HTTPNotFound(explanation=e.msg) except exception.ShareNetworkNotFound: - msg = _("Share server %s could not be found. Its associated " - "share network does not " - "exist.") % server['share_network_id'] + msg = _("Share server could not be found. Its associated share " + "network %s does not exist.") % server['share_network_id'] raise exc.HTTPNotFound(explanation=msg) return self._view_builder.build_share_server(req, server) diff --git a/releasenotes/notes/fix_share_server_api_2025649-f818f594e97c59e6.yaml b/releasenotes/notes/fix_share_server_api_2025649-f818f594e97c59e6.yaml new file mode 100644 index 0000000000..31bed337a4 --- /dev/null +++ b/releasenotes/notes/fix_share_server_api_2025649-f818f594e97c59e6.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + `bug #2025649 + `_: Fixed share + server API error message.