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) {