From 60f2a25ee8abf70760f5676f4f45cb4e05cadc80 Mon Sep 17 00:00:00 2001 From: Mark Hoeber Date: Mon, 3 Mar 2014 10:13:38 -0500 Subject: [PATCH] Edits from review stud-1332 --- docs/en_us/course_authors/source/external_graders.rst | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/en_us/course_authors/source/external_graders.rst b/docs/en_us/course_authors/source/external_graders.rst index 77d82165c5..594a29be1c 100644 --- a/docs/en_us/course_authors/source/external_graders.rst +++ b/docs/en_us/course_authors/source/external_graders.rst @@ -48,14 +48,10 @@ External Graders and XQueue The edX Platform communicates with your external grader through XQueue. XQueue provides students' input to the grader; it then receives results from the grader and returns them to students. -The queue for your course must be set up in Pull mode. - -In Pull mode, student submissions are collected in XQueue, where they remain until the grader actively retrieves, or pulls, the next submission from the queue for grading. +Student submissions are collected in XQueue, where they remain until the grader actively retrieves, or pulls, the next submission from the queue for grading. The external grader polls the XQueue through a RESTful interface at a regular interval. When the external grader pulls a submission, it runs the tests on it, then pushes the response back to XQueue through the RESTful interface. XQueue then delivers the response to the edX Learning Management System. -Pull mode prevents your grader from being overloaded by submissions it is not ready to process. - For example code of an external grader that uses Pull mode, see the `Stanford-Online repository xqueue_pull_ref `_.