Skip to content

Commit

Permalink
[RHCLOUD-30039] Add camel keystore resource file prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
g-duval committed Feb 18, 2024
1 parent cfc6eac commit b4ad6df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private HttpEndpointBuilder setupRecipientResolverEndpoint() {
if (emailConnectorConfig.getRecipientsResolverTrustStorePath().isPresent() && emailConnectorConfig.getRecipientsResolverTrustStorePassword().isPresent() && emailConnectorConfig.getRecipientsResolverTrustStoreType().isPresent()) {

KeyStoreParameters keyStoreParameters = new KeyStoreParameters();
keyStoreParameters.setResource(emailConnectorConfig.getRecipientsResolverTrustStorePath().get());
keyStoreParameters.setResource("file:" + emailConnectorConfig.getRecipientsResolverTrustStorePath().get());
keyStoreParameters.setPassword(emailConnectorConfig.getRecipientsResolverTrustStorePassword().get());
keyStoreParameters.setType(emailConnectorConfig.getRecipientsResolverTrustStoreType().get());

Expand Down

0 comments on commit b4ad6df

Please sign in to comment.