Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cluster_3_racks_multi_shotover_with_2_shotover_down fix intermittent failures #1813

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions shotover-proxy/tests/kafka_int_tests/test_cases.rs
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,13 @@ pub async fn produce_consume_partitions1_shotover_nodes_go_down(
offset: Some(0),
})
.await;
consumer.assert_commit_offsets(HashMap::from([(
TopicPartition {
topic_name: topic_name.to_owned(),
partition: 0,
},
1,
)]));

// kill shotover node(s)
for shotover_node in shotover_nodes_to_kill {
Expand Down
Loading