fix(storage): typo in oidc update query (#3535)

This fixes an erroneous quotation mark in one of the OpenID Connect SQL Queries.

Fixes #3534
pull/3536/head
andreas-berg 2022-06-17 13:14:33 +03:00 committed by GitHub
parent 033714a568
commit af64f83506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ const (
queryFmtDeactivateOAuth2SessionByRequestID = `
UPDATE %s
SET active = FALSE
WHERE request_id = ?;"`
WHERE request_id = ?;`
queryFmtSelectOAuth2BlacklistedJTI = `
SELECT id, signature, expires_at