summaryrefslogtreecommitdiff
path: root/src/mongo/db/index_builder.cpp
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2017-04-28 14:18:50 -0400
committerTess Avitabile <tess.avitabile@mongodb.com>2017-05-23 17:37:13 -0400
commitf56ae945275aa9360d2d6eae192b64d558ede20b (patch)
treeef6a8deb33dc5e6eef3a108625eb8979c0cffbc9 /src/mongo/db/index_builder.cpp
parent9ef7f6dfedfbacfeabc67f4579c397647c78f8d1 (diff)
downloadmongo-f56ae945275aa9360d2d6eae192b64d558ede20b.tar.gz
SERVER-28575 Profile entry for update/delete should contain entire raw update/delete
Diffstat (limited to 'src/mongo/db/index_builder.cpp')
-rw-r--r--src/mongo/db/index_builder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index_builder.cpp b/src/mongo/db/index_builder.cpp
index 6f82515873a..71e586f99cd 100644
--- a/src/mongo/db/index_builder.cpp
+++ b/src/mongo/db/index_builder.cpp
@@ -133,7 +133,7 @@ Status IndexBuilder::_build(OperationContext* opCtx,
{
stdx::lock_guard<Client> lk(*opCtx->getClient());
// Show which index we're building in the curop display.
- CurOp::get(opCtx)->setQuery_inlock(_index);
+ CurOp::get(opCtx)->setOpDescription_inlock(_index);
}
bool haveSetBgIndexStarting = false;