-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pulsar nack release message only when the message is not used later
- Loading branch information
1 parent
02538ac
commit 14672b9
Showing
5 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...ar/src/test/java/io/smallrye/reactive/messaging/pulsar/ack/PulsarAckPoolMessagesTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.smallrye.reactive.messaging.pulsar.ack; | ||
|
||
import io.smallrye.reactive.messaging.test.common.config.MapBasedConfig; | ||
|
||
public class PulsarAckPoolMessagesTest extends PulsarAckTest { | ||
|
||
MapBasedConfig config() { | ||
return super.config() | ||
.with("mp.messaging.incoming.data.poolMessages", true); | ||
} | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
...src/test/java/io/smallrye/reactive/messaging/pulsar/fault/PulsarNackPoolMessagesTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.smallrye.reactive.messaging.pulsar.fault; | ||
|
||
import io.smallrye.reactive.messaging.test.common.config.MapBasedConfig; | ||
|
||
public class PulsarNackPoolMessagesTest extends PulsarNackTest { | ||
|
||
MapBasedConfig config() { | ||
return super.config() | ||
.with("mp.messaging.incoming.data.poolMessages", true); | ||
} | ||
|
||
} |