diff options
author | Tess Avitabile <tess.avitabile@mongodb.com> | 2017-04-28 14:18:50 -0400 |
---|---|---|
committer | Tess Avitabile <tess.avitabile@mongodb.com> | 2017-05-23 17:37:13 -0400 |
commit | f56ae945275aa9360d2d6eae192b64d558ede20b (patch) | |
tree | ef6a8deb33dc5e6eef3a108625eb8979c0cffbc9 /src/mongo/db/index_builder.cpp | |
parent | 9ef7f6dfedfbacfeabc67f4579c397647c78f8d1 (diff) | |
download | mongo-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.cpp | 2 |
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; |