rpuch commented on code in PR #4663:
URL: https://github.com/apache/ignite-3/pull/4663#discussion_r1824562020
##########
modules/metastorage/src/integrationTest/java/org/apache/ignite/internal/metastorage/impl/ItMetaStorageCompactionTriggerOneNodeTest.java:
##########
@@ -75,23 +75,23 @@ void testCompactionAfterRestartNode() throws Exception {
log.info("Latest revision for key: [key={}, revision={}]", FOO_KEY,
fooRevision);
// Let's cancel new compactions to create a new version for the key
and not compact it until we restart the node.
- startDropCompactionCommand(node);
+ startDroppingCompactionCommand(node);
assertThat(metaStorageManager.put(FOO_KEY, VALUE),
willCompleteSuccessfully());
long latestFooRevision = latestKeyRevision(metaStorageManager,
FOO_KEY);
long latestCompactionRevision =
metaStorageManager.getCompactionRevisionLocally();
// Let's change the properties before restarting so that a new
scheduled compaction does not start after the node starts.
- changeCompactionProperties(node, Long.toString(Long.MAX_VALUE),
Long.toString(Long.MAX_VALUE));
+ changeCompactionProperties(node, Long.MAX_VALUE, Long.MAX_VALUE);
IgniteImpl restartedNode = restartNode();
MetaStorageManager restartedMetaStorageManager =
restartedNode.metaStorageManager();
- // Let's make sure that after the restart the correct revision of the
compression is restored and the compression itself will be at
+ // Let's make sure that after the restart the correct revision of the
compaction is restored and the compression itself will be at
Review Comment:
Second instance of 'compression' is still here :)
--
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]