Skip to content
Snippets Groups Projects
Commit c2e380b1 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

bugfix - cache primaries declaration of support for up to 6 hours, not six minutes

parent 7a250eb7
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ jwk = require('jwcrypto/jwk');
const WELL_KNOWN_URL = "/.well-known/vep";
// cache .well-known/vep for six hours
const MAX_CACHE_MS = (6 * 60 * 1000);
const MAX_CACHE_MS = (6 * 60 * 60 * 1000);
function parseWellKnownBody(body, domain) {
var v = JSON.parse(body);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment