Changes between Initial Version and Version 11 of Ticket #29800
- Timestamp:
- 11/25/18 10:45:49 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29800
- Property Cc Herbert Fortes added
-
Property
Component
changed from
Uncategorized
toHTTP handling
-
Property
Summary
changed from
Django hangs when Content-Length hangs
toDjango hangs when Content-Length has incorrect value
- Property Owner nobody deleted
-
Property
Triage Stage
changed from
Unreviewed
toAccepted
-
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)