lowka commented on code in PR #4256:
URL: https://github.com/apache/ignite-3/pull/4256#discussion_r1741472938
##########
modules/catalog-compaction/src/test/java/org/apache/ignite/internal/catalog/compaction/CatalogCompactionRunnerSelfTest.java:
##########
@@ -163,9 +185,12 @@ public void routineSucceedOnCoordinator() throws
InterruptedException {
// Nothing should be changed if previous catalog doesn't exists.
Catalog earliestCatalog =
Objects.requireNonNull(catalogManager.catalog(catalogManager.earliestCatalogVersion()));
compactionRunner = createRunner(NODE1, NODE1, (n) ->
earliestCatalog.time());
- compactionRunner.triggerCompaction(clockService.now());
+
+ HybridTimestamp now = clockService.now();
+ compactionRunner.onLowWatermarkChanged(now);
+ compactionRunner.triggerCompaction(now);
Review Comment:
Done.
--
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]