From 6195e8d4cafb2cc2e8abc2a901f9bdfa54126385 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 24 Mar 2016 15:59:09 -0400 Subject: [PATCH] Fix `fixedDelay` typo in the `file.adoc` JIRA: https://jira.spring.io/browse/INT-3969 **Cherry-pick to 4.2.x** --- src/reference/asciidoc/file.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/asciidoc/file.adoc b/src/reference/asciidoc/file.adoc index 14e2360a9b..0bb9a54e37 100644 --- a/src/reference/asciidoc/file.adoc +++ b/src/reference/asciidoc/file.adoc @@ -309,7 +309,7 @@ public class FileReadingJavaApplication { } @Bean - @InboundChannelAdapter(value = "fileInputChannel", poller = @Poller(fixed-delay = "1000")) + @InboundChannelAdapter(value = "fileInputChannel", poller = @Poller(fixedDelay = "1000")) public MessageSource fileReadingMessageSource() { FileReadingMessageSource source = new FileReadingMessageSource(); source.setDirectory(new File(INBOUND_PATH));