summaryrefslogtreecommitdiff
path: root/src/mongo/client/remote_command_runner_impl.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-05-29 17:13:52 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-05-31 20:42:22 -0400
commitd412a6c1551a9c9e3b54a14455093cb72653b9a3 (patch)
tree41df1a18040949a7391023c826314ebb44f60a4a /src/mongo/client/remote_command_runner_impl.cpp
parent8960f89c00dd0a1a49d5238ab658ed4f54300aa5 (diff)
downloadmongo-d412a6c1551a9c9e3b54a14455093cb72653b9a3.tar.gz
SERVER-18748 Move cursor response management under query
This change moves the cursor response generation logic to be under the query library. Also it removes the dependency and calls to replication coordinator.
Diffstat (limited to 'src/mongo/client/remote_command_runner_impl.cpp')
-rw-r--r--src/mongo/client/remote_command_runner_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/client/remote_command_runner_impl.cpp b/src/mongo/client/remote_command_runner_impl.cpp
index 2a799eb3d7d..7da4364bcf1 100644
--- a/src/mongo/client/remote_command_runner_impl.cpp
+++ b/src/mongo/client/remote_command_runner_impl.cpp
@@ -31,8 +31,8 @@
#include "mongo/client/remote_command_runner_impl.h"
#include "mongo/db/commands.h"
-#include "mongo/db/commands/cursor_responses.h"
#include "mongo/db/namespace_string.h"
+#include "mongo/db/query/cursor_responses.h"
#include "mongo/db/query/getmore_request.h"
#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/base/status_with.h"