nizhikov commented on code in PR #9907:
URL: https://github.com/apache/ignite/pull/9907#discussion_r875734697
##########
modules/core/src/test/java/org/apache/ignite/internal/processors/cache/consistency/AbstractFullSetReadRepairTest.java:
##########
@@ -40,80 +42,78 @@ public abstract class AbstractFullSetReadRepairTest extends
AbstractReadRepairTe
/**
*
*/
- protected static final Consumer<ReadRepairData> GET_CHECK_AND_FIX = (data)
-> {
- IgniteCache<Integer, Integer> cache = data.cache;
+ protected static final Consumer<ReadRepairData> GET_CHECK_AND_REPAIR =
(data) -> {
+ IgniteCache<Integer, Object> cache = data.cache;
+
Set<Integer> keys = data.data.keySet();
boolean raw = data.raw;
boolean async = data.async;
+ boolean binary = data.binary;
ReadRepairStrategy strategy = data.strategy;
Review Comment:
Let's inline `keys`, `raw`, `async, `strtegy`.
##########
modules/core/src/test/java/org/apache/ignite/internal/processors/cache/consistency/AbstractFullSetReadRepairTest.java:
##########
@@ -40,80 +42,78 @@ public abstract class AbstractFullSetReadRepairTest extends
AbstractReadRepairTe
/**
*
*/
- protected static final Consumer<ReadRepairData> GET_CHECK_AND_FIX = (data)
-> {
- IgniteCache<Integer, Integer> cache = data.cache;
+ protected static final Consumer<ReadRepairData> GET_CHECK_AND_REPAIR =
(data) -> {
+ IgniteCache<Integer, Object> cache = data.cache;
+
Set<Integer> keys = data.data.keySet();
boolean raw = data.raw;
boolean async = data.async;
+ boolean binary = data.binary;
ReadRepairStrategy strategy = data.strategy;
Review Comment:
Let's inline `keys`, `raw`, `async`, `strtegy`.
--
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]