This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new b165121 camel-google-pubsub: fixed incorrect creation of the dead-letter topic (#5160) b165121 is described below commit b16512110e0f984fa390f39800dbb6fa822da91e Author: Otavio Rodolfo Piske <orpi...@users.noreply.github.com> AuthorDate: Wed Mar 3 15:39:23 2021 +0100 camel-google-pubsub: fixed incorrect creation of the dead-letter topic (#5160) --- .../camel/component/google/pubsub/integration/DeadLetterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-google-pubsub/src/test/java/org/apache/camel/component/google/pubsub/integration/DeadLetterTest.java b/components/camel-google-pubsub/src/test/java/org/apache/camel/component/google/pubsub/integration/DeadLetterTest.java index 35674a9..af1e45e 100644 --- a/components/camel-google-pubsub/src/test/java/org/apache/camel/component/google/pubsub/integration/DeadLetterTest.java +++ b/components/camel-google-pubsub/src/test/java/org/apache/camel/component/google/pubsub/integration/DeadLetterTest.java @@ -110,7 +110,7 @@ public class DeadLetterTest extends PubsubTestSupport { .setName(projectInputSubscriptionName.toString()) .setTopic(inputTopic.getName()) .setDeadLetterPolicy(DeadLetterPolicy.newBuilder() - .setDeadLetterTopic(deadLetterTopic.toString()) + .setDeadLetterTopic(deadLetterTopic.getName()) .setMaxDeliveryAttempts(5).build()) .build(); Subscription deadLetterSubscription = Subscription.newBuilder()