We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca471ed commit f676338Copy full SHA for f676338
src/performance-tool/java/com/rabbitmq/stream/perf/Utils.java
@@ -609,7 +609,12 @@ public String apply(String stream, Integer index) {
609
610
static void declareSuperStreamExchangeAndBindings(
611
Channel channel, String superStream, List<String> streams) throws Exception {
612
- channel.exchangeDeclare(superStream, BuiltinExchangeType.DIRECT, true);
+ channel.exchangeDeclare(
613
+ superStream,
614
+ BuiltinExchangeType.DIRECT,
615
+ true,
616
+ false,
617
+ Collections.singletonMap("x-super-stream", true));
618
619
for (int i = 0; i < streams.size(); i++) {
620
channel.queueBind(
0 commit comments