mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-09-09 18:29:39 +02:00
Fix a typo on signature creation bounds check message
This commit is contained in:
parent
588b9d7469
commit
c5bae9d50d
1 changed files with 1 additions and 1 deletions
|
@ -690,7 +690,7 @@ abstract class SignatureValidator {
|
||||||
}
|
}
|
||||||
if (notAfter != null && timestamp > notAfter) {
|
if (notAfter != null && timestamp > notAfter) {
|
||||||
throw SignatureValidationException(
|
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()}," +
|
" Created: ${timestamp.formatUTC()}," +
|
||||||
" latest allowed: ${notAfter.formatUTC()}")
|
" latest allowed: ${notAfter.formatUTC()}")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue