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
d9432a15
Commit
d9432a15
authored
Jul 17, 2012
by
kimth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop immediate seed prior to queuekey generation
parent
8c327eb0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
common/lib/capa/capa/responsetypes.py
+1
-2
No files found.
common/lib/capa/capa/responsetypes.py
View file @
d9432a15
...
...
@@ -766,7 +766,7 @@ class CodeResponse(LoncapaResponse):
# Replace 'oldcmap' with new grading results if queuekey matches
# If queuekey does not match, we keep waiting for the score_msg that will match
for
answer_id
in
idset
:
if
oldcmap
.
is_right_queuekey
(
answer_id
,
queuekey
):
if
oldcmap
.
is_right_queuekey
(
answer_id
,
queuekey
):
# If answer_id is not queued, will return False
idx
=
idset
.
index
(
answer_id
)
msg
=
rxml
.
find
(
'message'
)
.
text
.
replace
(
' '
,
' '
)
if
idx
==
0
else
None
oldcmap
.
set
(
answer_id
,
self
.
context
[
'correct'
][
idx
],
msg
=
msg
)
...
...
@@ -801,7 +801,6 @@ class CodeResponse(LoncapaResponse):
xmlstr
=
etree
.
tostring
(
self
.
xml
,
pretty_print
=
True
)
header
=
{
'return_url'
:
self
.
system
.
xqueue_callback_url
}
random
.
seed
()
queuekey
=
random
.
randint
(
0
,
2
**
32
-
1
)
header
.
update
({
'queuekey'
:
queuekey
})
...
...
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