From 4ea38c308da292f43e29d32b1b53b7324db0bafe Mon Sep 17 00:00:00 2001 From: Andy Schwerin Date: Fri, 22 May 2015 15:24:52 -0400 Subject: SERVER-14995 Move operation id, lockState and client fields to OperationContext. They have been moved from OperationContextImpl. Furthermore, the CurOp stack is now attached to OperationContext, instead of Client. With this change, an operation's lifetime is governed by the lifetime of an OperationContext object. The "_active" field of CurOp is therefore no longer meaingful. This required fixing the lifetime of OperationContext in a few places. A future change will adjust operation lifetime timing to time the lifetime of the OperationContext object, as well. --- src/mongo/db/index_builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mongo/db/index_builder.cpp') diff --git a/src/mongo/db/index_builder.cpp b/src/mongo/db/index_builder.cpp index 7baf390792d..45620ee0544 100644 --- a/src/mongo/db/index_builder.cpp +++ b/src/mongo/db/index_builder.cpp @@ -87,7 +87,7 @@ namespace { AuthorizationSession::get(txn.getClient())->grantInternalAuthorization(); - CurOp::get(txn)->reset(dbInsert); + CurOp::get(txn)->setOp(dbInsert); NamespaceString ns(_index["ns"].String()); ScopedTransaction transaction(&txn, MODE_IX); -- cgit v1.2.1