diff --git a/source/find_getmore_killcursors_commands/find_getmore_killcursors_commands.md b/source/find_getmore_killcursors_commands/find_getmore_killcursors_commands.md index 251d5b2b38..439720f763 100644 --- a/source/find_getmore_killcursors_commands/find_getmore_killcursors_commands.md +++ b/source/find_getmore_killcursors_commands/find_getmore_killcursors_commands.md @@ -264,8 +264,7 @@ to the value of the option **maxAwaitTimeMS**. If no **maxAwaitTimeMS** is speci ### getMore The [getMore](https://www.mongodb.com/docs/manual/reference/command/getMore/) command replaces the **OP_GET_MORE** wire -protocol message. The query flags passed to OP_QUERY for a getMore command MUST be secondaryOk=true when sent to a -secondary. The OP_QUERY namespace MUST be the same as for the **find** and **killCursors** commands. +protocol message. The OP_QUERY namespace MUST be the same as for the **find** and **killCursors** commands. ```typescript interface GetMoreCommand { @@ -456,6 +455,8 @@ More in depth information about passing read preferences to Mongos can be found ## Changelog +- 2026-05-13: Remove stale `secondaryOk=true` requirement from getMore section. + - 2024-07-30: Migrated from reStructuredText to Markdown. - 2023-05-10: Improve tailable cursor description and update the `getMore` section code blocks.