Skip to content

Commit

Permalink
Avoid Race in FtpStreamingMessageSourceTests
Browse files Browse the repository at this point in the history
See #2776
  • Loading branch information
garyrussell committed Mar 1, 2019
1 parent 3657d05 commit 23843c7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -174,7 +174,7 @@ public QueueChannel data() {
public PollerMetadata defaultPoller() {
PollerMetadata pollerMetadata = new PollerMetadata();
pollerMetadata.setTrigger(new PeriodicTrigger(500));
pollerMetadata.setMaxMessagesPerPoll(2000);
pollerMetadata.setMaxMessagesPerPoll(1);
return pollerMetadata;
}

Expand Down

0 comments on commit 23843c7

Please sign in to comment.