MCPcopy
hub / github.com/django/django / async_sensitive_view_nested

Function async_sensitive_view_nested

tests/view_tests/views.py:212–218  ·  view source on GitHub ↗
(request)

Source from the content-addressed store, hash-verified

210
211
212async def async_sensitive_view_nested(request):
213 try:
214 await async_sensitive_function(request)
215 except Exception:
216 exc_info = sys.exc_info()
217 send_log(request, exc_info)
218 return technical_500_response(request, *exc_info)
219
220
221@sensitive_variables()

Callers

nothing calls this directly

Calls 3

technical_500_responseFunction · 0.90
async_sensitive_functionFunction · 0.85
send_logFunction · 0.85

Tested by

no test coverage detected