From ed9d3a2f4eae7222e6bdbc68d18f66e6a9af99d7 Mon Sep 17 00:00:00 2001 From: Todd Date: Mon, 25 Sep 2023 10:16:14 -0700 Subject: [PATCH] Update internal/daemon/cache/repository_token.go Co-authored-by: Jim --- internal/daemon/cache/repository_token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/daemon/cache/repository_token.go b/internal/daemon/cache/repository_token.go index 729a0c2c59a..681247858ab 100644 --- a/internal/daemon/cache/repository_token.go +++ b/internal/daemon/cache/repository_token.go @@ -358,7 +358,7 @@ func cleanExpiredOrOrphanedAuthTokens(ctx context.Context, writer db.Writer, idT or -- sqlite stores expiration_time as a string in a format that might not match -- what is being used by current_timestamp. Using datetime() makes the - -- formats match which allow the string comparison perfoemed here to work + -- formats match which allow the string comparison performed here to work -- the same as a time comparison. datetime(expiration_time) < current_timestamp or