Developer documentation about the various cleanup jobs (#5447)

This commit is contained in:
Quentin Gliech
2026-01-23 18:16:11 +01:00
committed by GitHub
4 changed files with 276 additions and 3 deletions

View File

@@ -255,6 +255,9 @@ impl OAuth2AccessTokenRepository for PgOAuth2AccessTokenRepository<'_> {
skip_all,
fields(
db.query.text,
since = since.map(tracing::field::display),
until = %until,
limit = limit,
),
err,
)]
@@ -309,6 +312,9 @@ impl OAuth2AccessTokenRepository for PgOAuth2AccessTokenRepository<'_> {
skip_all,
fields(
db.query.text,
since = since.map(tracing::field::display),
until = %until,
limit = limit,
),
err,
)]

View File

@@ -449,9 +449,9 @@ impl UpstreamOAuthLinkRepository for PgUpstreamOAuthLinkRepository<'_> {
skip_all,
fields(
db.query.text,
since,
until,
limit,
since = since.map(tracing::field::display),
until = %until,
limit = limit,
),
err,
)]