(status_code, exception)
| 137 | |
| 138 | |
| 139 | def process_failure_response(status_code, exception): |
| 140 | LOG.error(str(exception)) |
| 141 | json_body = {"faultstring": str(exception)} |
| 142 | return router.Response(status_code=status_code, json_body=json_body) |
| 143 | |
| 144 | |
| 145 | sso_controller = SingleSignOnController() |