We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfbb633 commit 4b4bc3aCopy full SHA for 4b4bc3a
lib/keystore.js
@@ -79,7 +79,7 @@ module.exports = (debugNamePrefix, signingKeyPassphrases, keystoreReader, refres
79
const maxTimestamp = now - (20 * 60) // the youngest key to use
80
const allKeys = Array.from(currentKeys)
81
let allowedKeys = allKeys.filter(keyEntry => keyEntry[1].timestamp < maxTimestamp)
82
- debug('allowedKeys: ', allowedKeys)
+ debug('allowedKeys: ', allowedKeys.map(keyEntry => keyEntry[0]))
83
if (allowedKeys.length === 0) {
84
allowedKeys = allKeys
85
}
0 commit comments