summaryrefslogtreecommitdiff
path: root/src/mongo/db/dbmessage.h
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2019-12-20 18:43:14 +0000
committerevergreen <evergreen@mongodb.com>2019-12-20 18:43:14 +0000
commit3fea6b339770dcdead06803b0c794553c25b94fb (patch)
tree09f84db37faa08da48957d967ba597fb7207ebaa /src/mongo/db/dbmessage.h
parentc5bd0178db8f5ea16f7df4e78a52fda56926d0b9 (diff)
downloadmongo-3fea6b339770dcdead06803b0c794553c25b94fb.tar.gz
SERVER-44517 Refactor exhaust cursors on top of isMaster code changes
Diffstat (limited to 'src/mongo/db/dbmessage.h')
-rw-r--r--src/mongo/db/dbmessage.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mongo/db/dbmessage.h b/src/mongo/db/dbmessage.h
index f66239637d9..d2db642f298 100644
--- a/src/mongo/db/dbmessage.h
+++ b/src/mongo/db/dbmessage.h
@@ -452,13 +452,6 @@ struct DbResponse {
// The next invocation for an exhaust command. If this is boost::none, the previous invocation
// should be reused for the next invocation.
boost::optional<BSONObj> nextInvocation;
-
- // TODO SERVER-44517: Remove 'exhaustNS' and 'exhaustCursorId'. Instead, GetMoreCmd::run()
- // should set 'shouldRunAgainForExhaust'.
- std::string exhaustNS; // Namespace of cursor if exhaust mode, else "".
- // Cursor ID when running on exhaust mode. Defaults to '0', indicating
- // that the cursor is exhausted.
- long long exhaustCursorId = 0;
};
/**