Private
Public Access
1
0

fix(ca): correct not_after column name to expires_at in CRL query
All checks were successful
CI Pipeline / Rust Format Check (push) Successful in 7s
CI Pipeline / Clippy Lints (push) Successful in 50s
CI Pipeline / Rust Unit Tests (push) Successful in 1m9s
CI Pipeline / Security Audit (push) Successful in 5s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 15s
CI Pipeline / Build .deb & Release (push) Has been skipped

The generate_crl() SQL query referenced a non-existent column
"not_after" instead of the actual column "expires_at" in the
certificates table. This caused a 500 error when requesting the CRL
endpoint because PostgreSQL could not find the column.

Fixes: CRL endpoint returns 500 Internal Server Error

Co-authored-by: Draco Lunaris <331325+Draco-Lunaris@users.noreply.github.com>
This commit is contained in:
Draco-Lunaris-Echo
2026-06-05 19:27:32 -05:00
committed by GitHub
parent 78f5304214
commit 89e572faf8

View File

@ -553,7 +553,7 @@ impl CertAuthority {
FROM certificates \ FROM certificates \
WHERE status = 'revoked'::cert_status \ WHERE status = 'revoked'::cert_status \
AND revoked_at IS NOT NULL \ AND revoked_at IS NOT NULL \
AND not_after > NOW() \ AND expires_at > NOW() \
ORDER BY revoked_at ASC", ORDER BY revoked_at ASC",
) )
.fetch_all(db) .fetch_all(db)