Skip to content

Commit

Permalink
rename oauth validation env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
wetret committed Jan 28, 2025
1 parent c671239 commit 8b8c901
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ public class FhirClientConfig

@ProcessDocumentation(processNames = {
"medizininformatik-initiativede_reportSend" }, description = "If set to true, OIDC validation will only log a warning and not throw an illegal state exception")
@Value("${de.medizininformatik.initiative.report.dic.fhir.server.oauth2.validation.lenient:false}")
private boolean fhirStoreOAuth2ConfigurationValidationLenient;
@Value("${de.medizininformatik.initiative.report.dic.fhir.server.oauth2.discovery.validation.lenient:false}")
private boolean fhirStoreOAuth2DiscoveryValidationLenient;

@ProcessDocumentation(processNames = {
"medizininformatik-initiativede_reportSend" }, description = "To enable debug logging of FHIR resources set to `true`")
Expand Down Expand Up @@ -211,7 +211,7 @@ public TokenClient tokenClient()
return new OAuth2TokenClient(fhirStoreOAuth2IssuerUrl, fhirStoreOAuth2DiscoveryPath, fhirStoreOAuth2ClientId,
fhirStoreOAuth2ClientSecret, fhirStoreOAuth2ConnectTimeout, fhirStoreOAuth2SocketTimeout,
trustStoreOAuth2Path, proxyUrl, proxyUsername, proxyPassword,
fhirStoreOAuth2ConfigurationValidationLenient);
fhirStoreOAuth2DiscoveryValidationLenient);
}

public DataLogger dataLogger()
Expand Down

0 comments on commit 8b8c901

Please sign in to comment.