Skip to content

Commit 96f4a31

Browse files
committed
fix typo
1 parent cea8da4 commit 96f4a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Access/TokenProcessorsParse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ std::unique_ptr<DB::ITokenProcessor> ITokenProcessor::parseTokenProcessor(
1818
if (!config.hasProperty(prefix + ".type"))
1919
throw DB::Exception(ErrorCodes::INVALID_CONFIG_PARAMETER, "'type' parameter shall be specified in token_processor configuration.'");
2020

21-
auto provider_type = Poco::toLower(config.getString(prefix + ".typ"));
21+
auto provider_type = Poco::toLower(config.getString(prefix + ".type"));
2222

2323
auto token_cache_lifetime = config.getUInt64(prefix + ".token_cache_lifetime", 3600);
2424
auto username_claim = config.getString(prefix + ".username_claim", "sub");

0 commit comments

Comments
 (0)