From 1a2f49e0c2cace9a811fe4f3afd628280fc9f4e0 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 22 Sep 2022 09:30:43 +0100 Subject: [PATCH] fix: actually test dropping chunk forwarding --- integration-tests/src/tests/client/chunks_management.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-tests/src/tests/client/chunks_management.rs b/integration-tests/src/tests/client/chunks_management.rs index a056910e28a..c5f8b8d6e75 100644 --- a/integration-tests/src/tests/client/chunks_management.rs +++ b/integration-tests/src/tests/client/chunks_management.rs @@ -311,7 +311,7 @@ fn chunks_produced_and_distributed_all_in_all_shards_should_succeed_even_without validator_groups: 1, chunk_only_producers: false, drop_to_4_from: &[], - drop_all_chunk_forward_msgs: false, + drop_all_chunk_forward_msgs: true, block_timeout: 15 * CHUNK_REQUEST_RETRY_MS, } .run() @@ -323,7 +323,7 @@ fn chunks_produced_and_distributed_2_vals_per_shard_should_succeed_even_without_ validator_groups: 2, chunk_only_producers: false, drop_to_4_from: &[], - drop_all_chunk_forward_msgs: false, + drop_all_chunk_forward_msgs: true, block_timeout: 15 * CHUNK_REQUEST_RETRY_MS, } .run() @@ -335,7 +335,7 @@ fn chunks_produced_and_distributed_one_val_per_shard_should_succeed_even_without validator_groups: 4, chunk_only_producers: false, drop_to_4_from: &[], - drop_all_chunk_forward_msgs: false, + drop_all_chunk_forward_msgs: true, block_timeout: 15 * CHUNK_REQUEST_RETRY_MS, } .run()