summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/pdfiletests.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2016-04-19 10:30:08 -0400
committerAndy Schwerin <schwerin@mongodb.com>2016-04-20 09:55:59 -0400
commit74280dd7b600c51f01e28e137a73f61fc0d0a2a2 (patch)
tree95dfe535377fe297b2098b9365a522b50f1f5c1f /src/mongo/dbtests/pdfiletests.cpp
parent22082d01a15a589398f3db6f9357dedd1a4c73fe (diff)
downloadmongo-74280dd7b600c51f01e28e137a73f61fc0d0a2a2.tar.gz
SERVER-23779 Replace direct instantiation of OperationContextImpl with cc().makeOperationContext().
Also, make OperationContextImpl's constructor private so that it can only be constructed via a Client.
Diffstat (limited to 'src/mongo/dbtests/pdfiletests.cpp')
-rw-r--r--src/mongo/dbtests/pdfiletests.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/dbtests/pdfiletests.cpp b/src/mongo/dbtests/pdfiletests.cpp
index f4955d67edd..943f0a124fd 100644
--- a/src/mongo/dbtests/pdfiletests.cpp
+++ b/src/mongo/dbtests/pdfiletests.cpp
@@ -32,10 +32,10 @@
#include "mongo/platform/basic.h"
#include "mongo/db/catalog/collection.h"
+#include "mongo/db/client.h"
#include "mongo/db/db.h"
#include "mongo/db/db_raii.h"
#include "mongo/db/json.h"
-#include "mongo/db/operation_context_impl.h"
#include "mongo/db/ops/insert.h"
#include "mongo/dbtests/dbtests.h"
@@ -62,7 +62,8 @@ protected:
return _context.db()->getCollection(ns());
}
- OperationContextImpl _txn;
+ const ServiceContext::UniqueOperationContext _txnPtr = cc().makeOperationContext();
+ OperationContext& _txn = *_txnPtr;
ScopedTransaction _scopedXact;
Lock::GlobalWrite _lk;
OldClientContext _context;