Changes between Initial Version and Version 11 of Ticket #29800
- Timestamp:
- Nov 25, 2018, 4:45:49 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29800
- Property Summary Django hangs when Content-Length hangs → Django hangs when Content-Length has incorrect value
- Property Component Uncategorized → HTTP handling
- Property Triage Stage Unreviewed → Accepted
- Property Cc added
- Property Owner removed
-
Ticket #29800 – Description
initial v11 7 7 with following handler: 8 8 {{{#!python 9 from django.http import HttpResponse 10 from django.views.decorators.csrf import csrf_exempt 11 12 @csrf_exempt 9 13 def index(request): 10 14 return HttpResponse(content=request.body)