Skip to content

Commit

Permalink
docs: Fix 'cacheMaxAge' default value in README (#196)
Browse files Browse the repository at this point in the history
Co-authored-by: David Patrick <david.patrick@auth0.com>
  • Loading branch information
antonku and davidpatrick committed Nov 2, 2020
1 parent 8c480f4 commit 5312f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -54,7 +54,7 @@ const jwksClient = require('jwks-rsa');
const client = jwksClient({
cache: true, // Default Value
cacheMaxEntries: 5, // Default value
cacheMaxAge: 10000, // Defaults to 10s
cacheMaxAge: 600000, // Defaults to 10m
jwksUri: 'https://sandrino.auth0.com/.well-known/jwks.json'
});

Expand Down

0 comments on commit 5312f44

Please sign in to comment.