Upgrade to Pulsar 4.0.4

Closes gh-45124
This commit is contained in:
Phillip Webb
2025-04-10 13:34:41 -07:00
parent 9a6048f25d
commit 3f7a77f444
3 changed files with 3 additions and 3 deletions

View File

@@ -254,7 +254,7 @@ class PulsarPropertiesMapperTests {
then(builder).should().topicsPattern(topisPattern);
then(builder).should().priorityLevel(123);
then(builder).should().readCompacted(true);
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null));
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null, null, null));
}
@Test

View File

@@ -107,7 +107,7 @@ class PulsarReactivePropertiesMapperTests {
then(builder).should().topicsPattern(topisPattern);
then(builder).should().priorityLevel(123);
then(builder).should().readCompacted(true);
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null));
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null, null, null));
then(builder).should().retryLetterTopicEnable(false);
then(builder).should().subscriptionName("subname");
then(builder).should().subscriptionInitialPosition(SubscriptionInitialPosition.Earliest);