Skip to content

Commit

Permalink
[ML] Fix broken commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Oct 28, 2021
1 parent 38b04a5 commit dc6c4fb
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,7 @@ export const latencyCorrelationsSearchServiceProvider: LatencyCorrelationsSearch
// We need to round the percentiles values
// because the queries we're using based on it
// later on wouldn't allow numbers with decimals.
const percentiles = Object.values(percentilesRecords).map(Math.round)
Math.round(p)
);
const percentiles = Object.values(percentilesRecords).map(Math.round);

addLogMessage(`Loaded percentiles.`);

Expand Down

0 comments on commit dc6c4fb

Please sign in to comment.