We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aeab3a commit 2bc034aCopy full SHA for 2bc034a
src/Access/TokenProcessorsParse.cpp
@@ -18,7 +18,7 @@ std::unique_ptr<DB::ITokenProcessor> ITokenProcessor::parseTokenProcessor(
18
if (!config.hasProperty(prefix + ".type"))
19
throw DB::Exception(ErrorCodes::INVALID_CONFIG_PARAMETER, "'type' parameter shall be specified in token_processor configuration.'");
20
21
- auto provider_type = Poco::toLower(config.getString(prefix + ".typ"));
+ auto provider_type = Poco::toLower(config.getString(prefix + ".type"));
22
23
auto token_cache_lifetime = config.getUInt64(prefix + ".token_cache_lifetime", 3600);
24
auto username_claim = config.getString(prefix + ".username_claim", "sub");
0 commit comments