tkalkirill commented on code in PR #812:
URL: https://github.com/apache/ignite-3/pull/812#discussion_r881468180
##########
modules/api/src/main/java/org/apache/ignite/configuration/schemas/clientconnector/ClientConnectorConfigurationSchema.java:
##########
@@ -30,8 +30,7 @@
@ConfigurationRoot(rootName = "clientConnector", type =
ConfigurationType.LOCAL)
public class ClientConnectorConfigurationSchema {
/** TCP port. */
- @Min(1024)
- @Max(0xFFFF)
+ @Range(min = 1024, max = 0xFFFF)
Review Comment:
Will it be valid? since only the upper bound may be important to us, we do
not need the lower bound, what should we do?
--
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]