summaryrefslogtreecommitdiff
path: root/src/mongo/db/client.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-04-20 18:51:35 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-04-23 15:59:58 -0400
commitc952a9396a1843aa45d6afa3c6785dec607de112 (patch)
tree8c7ba745afa4d24d7bc7c998aec713c8384bacb2 /src/mongo/db/client.cpp
parent57232d88b869b0741d95998f8ed09a96b2e7a1bc (diff)
downloadmongo-c952a9396a1843aa45d6afa3c6785dec607de112.tar.gz
SERVER-18131 Clean up LastError.
Makes LastError a decoration on Client. Removes behavior that was specific to the dbKillCursors wire protocol message into the processing for that message, and out of last error. Simplifies lifetime of LastError. It always exists on Clients, so there's no checking for its existence, and no passing it around through parts of the networking library.
Diffstat (limited to 'src/mongo/db/client.cpp')
-rw-r--r--src/mongo/db/client.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mongo/db/client.cpp b/src/mongo/db/client.cpp
index cc4a7c69cab..a2e510f4bb0 100644
--- a/src/mongo/db/client.cpp
+++ b/src/mongo/db/client.cpp
@@ -83,7 +83,6 @@ namespace mongo {
}
setThreadName(fullDesc.c_str());
- mongo::lastError.initThread();
// Create the client obj, attach to thread
*currentClient.get() = service->makeClient(fullDesc, mp);