timoninmaxim commented on code in PR #11040:
URL: https://github.com/apache/ignite/pull/11040#discussion_r1400410555
##########
modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/dump/IgniteConcurrentCacheDumpTest.java:
##########
@@ -36,15 +36,15 @@
/** */
public class IgniteConcurrentCacheDumpTest extends AbstractCacheDumpTest {
/** */
- @Parameterized.Parameters(name =
"nodes={0},backups={1},persistence={2},mode={3},useDataStreamer={4},onlyPrimary={5}")
+ @Parameterized.Parameters(name =
"nodes={0},backups={1},persistence={2},mode={3},useDataStreamer={4},onlyPrimary={5},comprParts={6}")
public static List<Object[]> params() {
List<Object[]> params = new ArrayList<>();
for (int nodes : new int[]{2, 3})
for (int backups : new int[]{1, 2})
for (boolean persistence : new boolean[]{true, false})
for (CacheAtomicityMode mode : CacheAtomicityMode.values())
- params.add(new Object[]{nodes, backups, persistence,
mode, false, false});
+ params.add(new Object[]{nodes, backups, persistence,
mode, false, false, true});
Review Comment:
Why do you test only compressed dump 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]