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
79568dfd
Commit
79568dfd
authored
Aug 26, 2012
by
kimth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add error logging for external grader messages
parent
c406be8c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
common/lib/capa/capa/responsetypes.py
+3
-0
No files found.
common/lib/capa/capa/responsetypes.py
View file @
79568dfd
...
...
@@ -1210,11 +1210,14 @@ class CodeResponse(LoncapaResponse):
try
:
score_result
=
json
.
loads
(
score_msg
)
except
(
TypeError
,
ValueError
):
log
.
error
(
"External grader message should be a JSON-serialized dict"
)
return
fail
if
not
isinstance
(
score_result
,
dict
):
log
.
error
(
"External grader message should be a JSON-serialized dict"
)
return
fail
for
tag
in
[
'correct'
,
'score'
,
'msg'
]:
if
not
score_result
.
has_key
(
tag
):
log
.
error
(
"External grader message is missing one or more required tags: 'correct', 'score', 'msg'"
)
return
fail
# Next, we need to check that the contents of the external grader message
...
...
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