Manojred1236 commented on issue #11310:
URL: https://github.com/apache/ignite/issues/11310#issuecomment-2048968920
I am using **ClientConfiguration** to initialise ignite, not find
appropriate method to set **sendServerExceptionStackTraceToClient** method.
public static ClientConfiguration getServerConfiguration(String[]
clusterNodes, int connectTimeout, int retryLimit) {
var igniteCfg = new ClientConfiguration();
igniteCfg.setPartitionAwarenessEnabled(true);
igniteCfg.setRetryLimit(retryLimit);
igniteCfg.setTimeout(connectTimeout);
igniteCfg.setTcpNoDelay(true);
igniteCfg.setAddressesFinder(() -> clusterNodes);
return igniteCfg;
}
--
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]