diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2021-07-15 16:23:44 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-07-23 18:42:24 +0000 |
commit | 813087e4984d65e903a7ff98ae28799fac3fef88 (patch) | |
tree | d8963078ff8e813b1d34c2a13ca8a45341f915aa /jstests/noPassthrough | |
parent | c7f3eb48ffc41e277ec1951e4c773f48e6c607c4 (diff) | |
download | mongo-813087e4984d65e903a7ff98ae28799fac3fef88.tar.gz |
SERVER-57474 profile_operation_metrics.js queries yield less frequently
(cherry picked from commit cd1dde2d12606e2a5496bb5aad72ad1d0aa891d4)
Diffstat (limited to 'jstests/noPassthrough')
-rw-r--r-- | jstests/noPassthrough/profile_operation_metrics.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/jstests/noPassthrough/profile_operation_metrics.js b/jstests/noPassthrough/profile_operation_metrics.js index 39427500a6d..b80c3418bb9 100644 --- a/jstests/noPassthrough/profile_operation_metrics.js +++ b/jstests/noPassthrough/profile_operation_metrics.js @@ -1,9 +1,7 @@ /** * Tests that resource consumption metrics are reported in the profiler. * - * // TODO SERVER-57474: enable this test. * @tags: [ - * __TEMPORARILY_DISABLED__, * requires_capped, * requires_fcv_47, * requires_replication, @@ -1617,7 +1615,8 @@ const testOperation = (db, operation) => { }; const setParams = { - profileOperationResourceConsumptionMetrics: true + profileOperationResourceConsumptionMetrics: true, + internalQueryExecYieldPeriodMS: 5000 }; const runTest = (db) => { |