summaryrefslogtreecommitdiff
path: root/src/mongo/s/query/establish_cursors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/query/establish_cursors.cpp')
-rw-r--r--src/mongo/s/query/establish_cursors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/query/establish_cursors.cpp b/src/mongo/s/query/establish_cursors.cpp
index a741d54812a..4c44a93b2c9 100644
--- a/src/mongo/s/query/establish_cursors.cpp
+++ b/src/mongo/s/query/establish_cursors.cpp
@@ -311,8 +311,8 @@ void killRemoteCursor(OperationContext* opCtx,
executor::TaskExecutor* executor,
RemoteCursor&& cursor,
const NamespaceString& nss) {
- BSONObj cmdObj =
- KillCursorsRequest(nss, {cursor.getCursorResponse().getCursorId()}).toBSON(BSONObj{});
+ BSONObj cmdObj = KillCursorsCommandRequest(nss, {cursor.getCursorResponse().getCursorId()})
+ .toBSON(BSONObj{});
executor::RemoteCommandRequest request(
cursor.getHostAndPort(), nss.db().toString(), cmdObj, opCtx);