From 04007ae57d5c6a4ba1a501129d0a2c500147478f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Kleiman?= Date: Mon, 21 Sep 2020 15:30:47 -0700 Subject: [PATCH] oauth: fix typos in response code details MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gastón Kleiman --- source/extensions/filters/http/oauth2/filter.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/extensions/filters/http/oauth2/filter.cc b/source/extensions/filters/http/oauth2/filter.cc index 2800b60262dc1..adbb6ee154128 100644 --- a/source/extensions/filters/http/oauth2/filter.cc +++ b/source/extensions/filters/http/oauth2/filter.cc @@ -57,10 +57,10 @@ const std::string& queryParamsError() { CONSTRUCT_ON_FIRST_USE(std::string, "err const std::string& queryParamsCode() { CONSTRUCT_ON_FIRST_USE(std::string, "code"); } const std::string& queryParamsState() { CONSTRUCT_ON_FIRST_USE(std::string, "state"); } -constexpr absl::string_view REDIRECT_RACE = "oath.race_redirect"; -constexpr absl::string_view REDIRECT_LOGGED_IN = "oath.logged_in"; -constexpr absl::string_view REDIRECT_FOR_CREDENTIALS = "oath.missing_credentials"; -constexpr absl::string_view SIGN_OUT = "oath.sign_out"; +constexpr absl::string_view REDIRECT_RACE = "oauth.race_redirect"; +constexpr absl::string_view REDIRECT_LOGGED_IN = "oauth.logged_in"; +constexpr absl::string_view REDIRECT_FOR_CREDENTIALS = "oauth.missing_credentials"; +constexpr absl::string_view SIGN_OUT = "oauth.sign_out"; template std::vector headerMatchers(const T& matcher_protos) {