Skip to content

Commit

Permalink
fix(docs): Fix documentation for default value of rollingPercentilesE…
Browse files Browse the repository at this point in the history
…nabled (#563)

rollingPercentilesEnabled option is documented as defaulting to false,
but rolling percentiles are enabled by default.
  • Loading branch information
stephenkubovic committed Apr 12, 2021
1 parent 7a920bf commit 93d5969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/circuit.js
Expand Up @@ -52,7 +52,7 @@ Please use options.errorThresholdPercentage`;
* @param {boolean} options.rollingPercentilesEnabled This property indicates
* whether execution latencies should be tracked and calculated as percentiles.
* If they are disabled, all summary statistics (mean, percentiles) are
* returned as -1. Default: false
* returned as -1. Default: true
* @param {Number} options.capacity the number of concurrent requests allowed.
* If the number currently executing function calls is equal to
* options.capacity, further calls to `fire()` are rejected until at least one
Expand Down

0 comments on commit 93d5969

Please sign in to comment.