Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
edx-platform
Commits
822eaa20
Commit
822eaa20
authored
Dec 08, 2014
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make ErrorDescriptor more resistent to errors
parent
d919d2ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
common/lib/xmodule/xmodule/error_module.py
+7
-2
No files found.
common/lib/xmodule/xmodule/error_module.py
View file @
822eaa20
...
...
@@ -108,7 +108,7 @@ class ErrorDescriptor(ErrorFields, XModuleDescriptor):
cls
,
# The error module doesn't use scoped data, and thus doesn't need
# real scope keys
ScopeIds
(
'error'
,
None
,
location
,
location
),
ScopeIds
(
None
,
'error'
,
location
,
location
),
field_data
,
)
...
...
@@ -120,9 +120,14 @@ class ErrorDescriptor(ErrorFields, XModuleDescriptor):
@classmethod
def
from_json
(
cls
,
json_data
,
system
,
location
,
error_msg
=
'Error not available'
):
try
:
json_string
=
json
.
dumps
(
json_data
,
skipkeys
=
False
,
indent
=
4
,
cls
=
EdxJSONEncoder
)
except
:
# pylint: disable=bare-except
json_string
=
repr
(
json_data
)
return
cls
.
_construct
(
system
,
json
.
dumps
(
json_data
,
skipkeys
=
False
,
indent
=
4
,
cls
=
EdxJSONEncoder
)
,
json
_string
,
error_msg
,
location
=
location
)
...
...
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