sanpwc commented on a change in pull request #160:
URL: https://github.com/apache/ignite-3/pull/160#discussion_r646326838
##########
File path:
modules/runner/src/main/java/org/apache/ignite/internal/storage/DistributedConfigurationStorage.java
##########
@@ -63,14 +63,17 @@
/**
* This key is expected to be the last key in lexicographical order of
distributed configuration keys. It is
* possible because keys are in lexicographical order in meta storage and
adding {@code (char)('.' + 1)} to the end
- * will produce all keys with prefix {@link
DistributedConfigurationStorage#DISTRIBUTED_PREFIX}
+ * will produce all keys with prefix {@link
MetaStorageManager#DISTRIBUTED_PREFIX}
*/
private static final ByteArray DST_KEYS_END_RANGE =
new ByteArray(DISTRIBUTED_PREFIX.substring(0,
DISTRIBUTED_PREFIX.length() - 1) + (char)('.' + 1));
- /** MetaStorage manager */
+ /** MetaStorage manager. */
Review comment:
MetaStorage -> Meta storage
--
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]