Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

- optimized logging in HttpHeaderUtils.

## [0.20.0] - 2025-05-23

- Added option to define a proxy for the lookup source (including authentication)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,7 @@ public static HeaderPreprocessor createOIDCHeaderPreprocessor(ReadableConfig rea
.getOptional(SOURCE_LOOKUP_OIDC_AUTH_TOKEN_EXPIRY_REDUCTION);
headerPreprocessor = HttpHeaderUtils.createOIDCAuthorizationHeaderPreprocessor(
oidcAuthURL.get(), oidcTokenRequest.get(), oidcExpiryReduction);
log.info("created HeaderPreprocessor " + headerPreprocessor
+ " for OIDC oidcAuthURL=" + oidcAuthURL
+ ", oidcTokenRequest=" + oidcTokenRequest
+ ", oidcExpiryReduction=" + oidcExpiryReduction);
log.info("created OIDC HeaderPreprocessor");
}
return headerPreprocessor;
}
Expand Down
Loading