Skip to content

Commit

Permalink
java-client dont redeclare exchange in spec (#860)
Browse files Browse the repository at this point in the history
Don't redeclare exchange in test/java/com/rabbitmq/client/test/functional/Tables.java.
  • Loading branch information
viktorerlingsson authored Dec 5, 2024
1 parent d4db0f5 commit 75e3151
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/rabbitmq-java-client.patch
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,9 @@ index 0360b6869..af7584ecd 100644
@@ -75,7 +75,7 @@ public class Tables extends BrokerTestCase
//sending as part of method arguments - we are relying on
//exchange.declare ignoring the arguments table.
channel.exchangeDeclare("x", "direct", false, false, table);
- channel.exchangeDeclare("x", "direct", false, false, table);
- channel.exchangeDelete("x");
+ // channel.exchangeDeclare("x", "direct", false, false, table);
+ // channel.exchangeDelete("x");
}

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Queues will no longer be closed if file size is incorrect. Fixes [#669](https://github.com/cloudamqp/lavinmq/issues/669)
- Dont redeclare exchange in java client test [#860](https://github.com/cloudamqp/lavinmq/pull/860)

## [2.0.2] - 2024-11-25

Expand Down

0 comments on commit 75e3151

Please sign in to comment.