Skip to content

Commit

Permalink
Merge pull request Netflix#839 from mattrjacobs/fix-js-typo
Browse files Browse the repository at this point in the history
Fix typo in hystrixCommand.js method name
  • Loading branch information
mattrjacobs committed Jul 23, 2015
2 parents 9ca80ab + 0d5fe8b commit 1866e28
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
// escape string used in jQuery & d3 selectors
data.escapedName = data.name.replace(/([ !"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g,'\\$1');
// do math
converAllAvg(data);
convertAllAvg(data);
calcRatePerSecond(data);
}

Expand All @@ -110,7 +110,7 @@
*
* We want to do this on any numerical values where we want per instance rather than cluster-wide sum.
*/
function converAllAvg(data) {
function convertAllAvg(data) {
convertAvg(data, "errorPercentage", true);
convertAvg(data, "latencyExecute_mean", false);
convertAvg(data, "latencyTotal_mean", false);
Expand Down

0 comments on commit 1866e28

Please sign in to comment.