summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Rassi <rassi@10gen.com>2015-08-29 09:59:51 -0400
committerJason Rassi <rassi@10gen.com>2015-08-29 09:59:51 -0400
commit4dc00e1c2e964dbbbb0deaa090bd76a6ea4893d4 (patch)
tree562a1ccbae2b83ea6bfb6a6c8a0fa3cd19357cab
parent10baa54379f1e86ea6c26700caac3316d8e9c86b (diff)
downloadmongo-4dc00e1c2e964dbbbb0deaa090bd76a6ea4893d4.tar.gz
Revert "Revert "SERVER-19569 SERVER-20194 CursorCache deletion task: update comments""
This reverts commit f59bf2dab42f9970cea81d1789f0b21e79e370cc.
-rw-r--r--jstests/core/crud_api.js2
-rw-r--r--jstests/core/list_collections1.js4
-rw-r--r--jstests/core/list_indexes.js4
-rw-r--r--src/mongo/s/query/cluster_cursor_cleanup_job.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/jstests/core/crud_api.js b/jstests/core/crud_api.js
index 5d26f72872e..ac447a7a657 100644
--- a/jstests/core/crud_api.js
+++ b/jstests/core/crud_api.js
@@ -722,7 +722,7 @@
// Insert all of them
coll.insertMany([{a:0, b:0}, {a:1, b:1}]);
- // TODO: When SERVER-19569 is done, we should be able to run this test regardless of whether
+ // TODO: When SERVER-20194 is done, we should be able to run this test regardless of whether
// we are using the find/getMore commands, both against a standalone server and passed
// through mongos.
if (!db.getMongo().useReadCommands()) {
diff --git a/jstests/core/list_collections1.js b/jstests/core/list_collections1.js
index 8d091177ce9..589092999aa 100644
--- a/jstests/core/list_collections1.js
+++ b/jstests/core/list_collections1.js
@@ -117,7 +117,7 @@
// Test basic usage of "cursor.batchSize" option.
//
- // TODO: When SERVER-19569 is done, we should be able to run this test regardless of whether we
+ // TODO: When SERVER-20194 is done, we should be able to run this test regardless of whether we
// are using the find/getMore commands, both against a standalone server and passed through
// mongos.
if (!mydb.getMongo().useReadCommands()) {
@@ -180,7 +180,7 @@
// Test more than 2 batches of results.
//
- // TODO: When SERVER-19569 is done, we should be able to run this test regardless of whether we
+ // TODO: When SERVER-20194 is done, we should be able to run this test regardless of whether we
// are using the find/getMore commands, both against a standalone server and passed through
// mongos.
if (!mydb.getMongo().useReadCommands()) {
diff --git a/jstests/core/list_indexes.js b/jstests/core/list_indexes.js
index 96aad46e555..f2a65aada5b 100644
--- a/jstests/core/list_indexes.js
+++ b/jstests/core/list_indexes.js
@@ -75,7 +75,7 @@
// Test basic usage of "cursor.batchSize" option.
//
- // TODO: When SERVER-19569 is done, we should be able to run this test regardless of whether we
+ // TODO: When SERVER-20194 is done, we should be able to run this test regardless of whether we
// are using the find/getMore commands, both against a standalone server and passed through
// mongos.
if (!coll.getDB().getMongo().useReadCommands()) {
@@ -120,7 +120,7 @@
// Test more than 2 batches of results.
//
- // TODO: When SERVER-19569 is done, we should be able to run this test regardless of whether we
+ // TODO: When SERVER-20194 is done, we should be able to run this test regardless of whether we
// are using the find/getMore commands, both against a standalone server and passed through
// mongos.
if (!coll.getDB().getMongo().useReadCommands()) {
diff --git a/src/mongo/s/query/cluster_cursor_cleanup_job.h b/src/mongo/s/query/cluster_cursor_cleanup_job.h
index a82a8389b16..d922df736fe 100644
--- a/src/mongo/s/query/cluster_cursor_cleanup_job.h
+++ b/src/mongo/s/query/cluster_cursor_cleanup_job.h
@@ -46,7 +46,7 @@ public:
* Period of time after which mortal cursors are killed for inactivity. Configurable with
* server parameter "cursorTimeoutMillis".
*
- * TODO: Move declaration to cpp file once CursorCache class is deleted. See SERVER-19569 for
+ * TODO: Move declaration to cpp file once CursorCache class is deleted. See SERVER-20194 for
* more details.
*/
static long long cursorTimeoutMillis;