From 9805b416550e4c7784acb1e96829da70f6e15c1e Mon Sep 17 00:00:00 2001 From: kimth Date: Wed, 15 Aug 2012 10:46:33 -0400 Subject: [PATCH 1/2] row --> rows --- lms/djangoapps/courseware/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/courseware/models.py b/lms/djangoapps/courseware/models.py index 261140dec7..4389a5f169 100644 --- a/lms/djangoapps/courseware/models.py +++ b/lms/djangoapps/courseware/models.py @@ -77,7 +77,7 @@ class StudentModuleCache(object): Arguments user: The user for which to fetch maching StudentModules descriptors: An array of XModuleDescriptors. - select_for_update: Flag indicating whether the row should be locked until end of transaction + select_for_update: Flag indicating whether the rows should be locked until end of transaction ''' if user.is_authenticated(): module_ids = self._get_module_state_keys(descriptors) @@ -110,7 +110,7 @@ class StudentModuleCache(object): the supplied descriptor. If depth is None, load all descendent StudentModules descriptor_filter is a function that accepts a descriptor and return wether the StudentModule should be cached - select_for_update: Flag indicating whether the row should be locked until end of transaction + select_for_update: Flag indicating whether the rows should be locked until end of transaction """ def get_child_descriptors(descriptor, depth, descriptor_filter): From 1bb8d9366dd344f49507dc432c2355d42d22c2d5 Mon Sep 17 00:00:00 2001 From: kimth Date: Thu, 16 Aug 2012 11:27:29 -0400 Subject: [PATCH 2/2] Xqueue URL is https not http --- lms/envs/dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/dev.py b/lms/envs/dev.py index 8457b50374..6720c2050d 100644 --- a/lms/envs/dev.py +++ b/lms/envs/dev.py @@ -54,7 +54,7 @@ CACHES = { } XQUEUE_INTERFACE = { - "url": "http://sandbox-xqueue.edx.org", + "url": "https://sandbox-xqueue.edx.org", "django_auth": { "username": "lms", "password": "***REMOVED***"