Skip to content

Commit

Permalink
cleanup avgMS display
Browse files Browse the repository at this point in the history
  • Loading branch information
awick committed Aug 24, 2020
1 parent 38832a3 commit 3e03f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiseService/wiseService.js
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ app.get('/stats', [noCacheJson], function (req, res) {
cacheMiss: src.cacheMissStat,
cacheRefresh: src.cacheRefreshStat,
cacheDropped: src.cacheDroppedStat,
average100MS: src.average100MS
average100MS: src.average100MS.toFixed(4)
});
}
res.send(stats);
Expand Down

0 comments on commit 3e03f6a

Please sign in to comment.