timoninmaxim commented on a change in pull request #8206:
URL: https://github.com/apache/ignite/pull/8206#discussion_r488675311
##########
File path:
modules/core/src/main/java/org/apache/ignite/configuration/ClientConfiguration.java
##########
@@ -33,9 +36,16 @@
/** Serial version uid. */
private static final long serialVersionUID = 0L;
- /** @serial Server addresses. */
+ /**
+ * @serial Server addresses.
+ * @deprecated deprecated in favor of {@link #addrFinder}. Keep it due to
Serializable compatibility.
+ */
+ @Deprecated
private String[] addrs = null;
+ /** Server addresses finder. */
+ private transient Supplier<String[]> addrFinder;
Review comment:
Used `ClientAddressFinder` as all classes in this package use Client
prefix.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]