Skip to content

Commit

Permalink
Disable part of test due to issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymell committed Sep 4, 2024
1 parent c87afa0 commit 8c1c2b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions omniqueue/tests/it/redis_fallback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@ async fn test_deadletter_config() {
let res = check_dlq(1).await;
assert_eq!(serde_json::to_string(&payload).unwrap(), res.unwrap());

/* This portion of test is flaky due to https://github.com/svix/omniqueue-rs/issues/102
// Test send to DLQ via explicit `nack`ing:
p.send_serde_json(&payload).await.unwrap();
Expand All @@ -396,6 +398,8 @@ async fn test_deadletter_config() {
// Expected message should be on DLQ:
let res = check_dlq(1).await;
assert_eq!(serde_json::to_string(&payload).unwrap(), res.unwrap());
*/
}

// A message without a `num_receives` field shouldn't
Expand Down

0 comments on commit 8c1c2b7

Please sign in to comment.