1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-04-22 06:24:47 +02:00

Merge pull request from elduffy/sig-bounds-typo

Fix a typo on signature creation bounds check message
This commit is contained in:
Paul Schaub 2025-02-17 13:18:39 +01:00 committed by GitHub
commit 2d18d05bd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -690,7 +690,7 @@ abstract class SignatureValidator {
}
if (notAfter != null && timestamp > notAfter) {
throw SignatureValidationException(
"Signature was made before the latest allowed signature creation time." +
"Signature was made after the latest allowed signature creation time." +
" Created: ${timestamp.formatUTC()}," +
" latest allowed: ${notAfter.formatUTC()}")
}