mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-04-22 06:24:47 +02:00
Merge pull request #464 from elduffy/sig-bounds-typo
Fix a typo on signature creation bounds check message
This commit is contained in:
commit
2d18d05bd7
1 changed files with 1 additions and 1 deletions
|
@ -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()}")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue