Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
c1d9a96d
Commit
c1d9a96d
authored
Dec 03, 2013
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catch errors during parsing and set empty .DATA/.FILES before re-raising.
parent
fe4c7d40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletions
+10
-1
rest_framework/request.py
+10
-1
No files found.
rest_framework/request.py
View file @
c1d9a96d
...
@@ -356,7 +356,16 @@ class Request(object):
...
@@ -356,7 +356,16 @@ class Request(object):
if
not
parser
:
if
not
parser
:
raise
exceptions
.
UnsupportedMediaType
(
media_type
)
raise
exceptions
.
UnsupportedMediaType
(
media_type
)
parsed
=
parser
.
parse
(
stream
,
media_type
,
self
.
parser_context
)
try
:
parsed
=
parser
.
parse
(
stream
,
media_type
,
self
.
parser_context
)
except
:
# If we get an exception during parsing, fill in empty data and
# re-raise. Ensures we don't simply repeat the error when
# attempting to render the browsable renderer response, or when
# logging the request or similar.
self
.
_data
=
QueryDict
(
''
,
self
.
_request
.
_encoding
)
self
.
_files
=
MultiValueDict
()
raise
# Parser classes may return the raw data, or a
# Parser classes may return the raw data, or a
# DataAndFiles object. Unpack the result as required.
# DataAndFiles object. Unpack the result as required.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment