diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-05-24 22:21:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 22:21:32 +0200 |
commit | 5e62ee31d76fcce46d88fea1078552682d082c89 (patch) | |
tree | 010ff5ca8978fcef14574126fc5a9fc99ee92459 /core/01_core.js | |
parent | d93b7627f0451355027d4fc0f2dd1c63c58ecc3d (diff) |
fix(core): op metrics op_names mismatch (#14716)
Diffstat (limited to 'core/01_core.js')
-rw-r--r-- | core/01_core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/01_core.js b/core/01_core.js index 2683f4adf..d48424288 100644 --- a/core/01_core.js +++ b/core/01_core.js @@ -217,7 +217,7 @@ function metrics() { const [aggregate, perOps] = opSync("op_metrics"); aggregate.ops = ObjectFromEntries(ArrayPrototypeMap( - core.op_names, + core.opNames(), (opName, opId) => [opName, perOps[opId]], )); return aggregate; |