Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 666aa80

Browse files
committed
JMH Microbenchamrks - simple fix, uncommented accidentally commented lines
1 parent 0bb04a7 commit 666aa80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jmh/java/reactor/rabbitmq/SenderWithLazyChannelPoolBenchmark.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ public void tearDownSender() throws Exception {
5656
}
5757
}
5858

59-
// @Benchmark
59+
@Benchmark
6060
public void send(Blackhole blackhole) {
6161
blackhole.consume(sender.send(msgFlux, new SendOptions().channelPool(channelPool)).block());
6262
}
6363

64-
// @Benchmark
64+
@Benchmark
6565
public void sendWithPublishConfirms(Blackhole blackhole) {
6666
blackhole.consume(sender.sendWithPublishConfirms(msgFlux, new SendOptions().channelPool(channelPool)).blockLast());
6767
}

0 commit comments

Comments
 (0)