summaryrefslogtreecommitdiff
path: root/src/mongo/db/dbmessage.h
diff options
context:
space:
mode:
authorVishnu Kaushik <vishnu.kaushik@mongodb.com>2019-06-19 14:29:35 -0400
committerVishnu Kaushik <vishnu.kaushik@mongodb.com>2019-06-19 14:30:22 -0400
commit00735a86d6100499519670bcc8767412d3c794cb (patch)
treef32790141e73e34378d1ae2ad71b6bc53a66795c /src/mongo/db/dbmessage.h
parent8b0a7b102b92891818175358b0ca82a545105023 (diff)
downloadmongo-00735a86d6100499519670bcc8767412d3c794cb.tar.gz
SERVER-41481 updated DbResonse exhaustCursorId comment
Diffstat (limited to 'src/mongo/db/dbmessage.h')
-rw-r--r--src/mongo/db/dbmessage.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mongo/db/dbmessage.h b/src/mongo/db/dbmessage.h
index c4c8bd3b243..82a0f80a475 100644
--- a/src/mongo/db/dbmessage.h
+++ b/src/mongo/db/dbmessage.h
@@ -445,11 +445,8 @@ Message makeGetMoreMessage(StringData ns, long long cursorId, int nToReturn, int
struct DbResponse {
Message response; // If empty, nothing will be returned to the client.
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.
- */
+ // Cursor ID when running on exhaust mode. Defaults to '0', indicating
+ // that the cursor is exhausted.
long long exhaustCursorId = 0;
};