sk0x50 commented on a change in pull request #748:
URL: https://github.com/apache/ignite-3/pull/748#discussion_r839286291
##########
File path:
modules/configuration/src/main/java/org/apache/ignite/internal/configuration/util/ConfigurationUtil.java
##########
@@ -1127,6 +1128,12 @@ public static boolean containsNameAnnotation(Field
schemaField) {
assert property instanceof ConfigurationNode;
+ // If the property is set as {@code true} the attempt to get
configuration property direct from Metastorage will be skipped, and
+ // the local one local will be returned. Otherwise, when the property
is set as {@code false}, the direct property will be returned.
+ if
(IgniteSystemProperties.getBoolean("IGNITE_GET_METADATA_LOCALLY_ONLY")) {
+ return property;
Review comment:
It would be nice to add a comment (perhaps, Jira link to an issue) that
this code should be removed later.
--
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]