Merge "api: Add missing Controller inheritance"

This commit is contained in:
Zuul
2024-04-19 22:48:51 +00:00
committed by Gerrit Code Review
@@ -369,7 +369,9 @@ class SecurityGroupRulesController(SecurityGroupControllerBase,
raise exc.HTTPBadRequest(explanation=exp.format_message())
class ServerSecurityGroupController(SecurityGroupControllerBase):
class ServerSecurityGroupController(
SecurityGroupControllerBase, wsgi.Controller
):
@wsgi.expected_errors(404)
def index(self, req, server_id):