From af64f83506b664aac11e1f0a6a2f9b4a6fb95556 Mon Sep 17 00:00:00 2001 From: andreas-berg <39428693+andreas-berg@users.noreply.github.com> Date: Fri, 17 Jun 2022 13:14:33 +0300 Subject: [PATCH] fix(storage): typo in oidc update query (#3535) This fixes an erroneous quotation mark in one of the OpenID Connect SQL Queries. Fixes #3534 --- internal/storage/sql_provider_queries.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/storage/sql_provider_queries.go b/internal/storage/sql_provider_queries.go index ed72c5b68..7dc44e156 100644 --- a/internal/storage/sql_provider_queries.go +++ b/internal/storage/sql_provider_queries.go @@ -286,7 +286,7 @@ const ( queryFmtDeactivateOAuth2SessionByRequestID = ` UPDATE %s SET active = FALSE - WHERE request_id = ?;"` + WHERE request_id = ?;` queryFmtSelectOAuth2BlacklistedJTI = ` SELECT id, signature, expires_at