exceptionfactory commented on code in PR #10788:
URL: https://github.com/apache/nifi/pull/10788#discussion_r2708927803
##########
nifi-extension-bundles/nifi-github-bundle/nifi-github-extensions/src/main/java/org/apache/nifi/github/GitHubRepositoryClient.java:
##########
@@ -118,6 +121,14 @@ public void onError(GitHubConnectorResponse
connectorResponse) throws IOExceptio
}
});
+ // Configure OkHttp connector with SSL context if provided
+ if (builder.sslContextProvider != null) {
+ final OkHttpClient okHttpClient = new OkHttpClient.Builder()
Review Comment:
Instead of using `OkHttp`, the `HttpClientGitHubConnector` implementation
should avoid the additional dependency on OkHttp
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]