From b60c3d08ee22b23ab5c91afe8b31c8997e0ba6b4 Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Mon, 10 Dec 2018 15:22:41 +0100 Subject: [PATCH] GH-1544 Fixed broken doc links Resolves #1544 --- docs/src/main/asciidoc/spring-cloud-stream.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-stream.adoc b/docs/src/main/asciidoc/spring-cloud-stream.adoc index 1458d6c6a..deb4d4eb9 100644 --- a/docs/src/main/asciidoc/spring-cloud-stream.adoc +++ b/docs/src/main/asciidoc/spring-cloud-stream.adoc @@ -729,7 +729,8 @@ public ApplicationRunner poller(PollableMessageSource destIn, MessageChannel des The `PollableMessageSource.poll()` method takes a `MessageHandler` argument (often a lambda expression, as shown here). It returns `true` if the message was received and successfully processed. -As with message-driven consumers, if the `MessageHandler` throws an exception, messages are published to error channels, as discussed in "`<>`". +As with message-driven consumers, if the `MessageHandler` throws an exception, messages are published to error channels, +as discussed in `<>`. Normally, the `poll()` method acknowledges the message when the `MessageHandler` exits. If the method exits abnormally, the message is rejected (not re-queued), but see <>. @@ -1633,7 +1634,7 @@ See the consumer property `useNativeDecoding`. Default: `false`. errorChannelEnabled:: When set to `true`, if the binder supports asynchroous send results, send failures are sent to an error channel for the destination. -See "`<>`" for more information. +See `<>` for more information. + Default: `false`.