nva commented on a change in pull request #6010: IGNITE-11183 Fixed proxy in
Web Console agent.
URL: https://github.com/apache/ignite/pull/6010#discussion_r253366897
##########
File path:
modules/web-console/web-agent/src/main/java/org/apache/ignite/console/agent/AgentLauncher.java
##########
@@ -375,13 +374,14 @@ public static void main(String[] args) throws Exception {
builder.connectionSpecs(sslConnectionSpec(cipherSuites));
}
- OkHttpClient sslFactory = builder.build();
-
- opts.callFactory = sslFactory;
- opts.webSocketFactory = sslFactory;
opts.secure = true;
}
+ OkHttpClient okHttpClient = builder.build();
+
Review comment:
All works fine. This was incorrect name of variable in original code.
`OkHttpClient sslFactory = builder.build()`
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services