Skip to content

Commit

Permalink
fix: actually test dropping chunk forwarding
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Sep 22, 2022
1 parent dc404fe commit 1a2f49e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/src/tests/client/chunks_management.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()
Expand All @@ -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()
Expand Down

0 comments on commit 1a2f49e

Please sign in to comment.