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

Fix a typo on signature creation bounds check message

This commit is contained in:
Eric Duffy 2025-02-14 10:35:15 -06:00
parent 588b9d7469
commit c5bae9d50d

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()}")
}