PollingConsumerSupport.start() do not get called
------------------------------------------------
Key: CAMEL-3158
URL: https://issues.apache.org/activemq/browse/CAMEL-3158
Project: Apache Camel
Issue Type: Bug
Components: camel-core
Affects Versions: 2.4.0
Reporter: Alexander Azarov
I have a subclass of PollingConsumerSupport and create it in a subclass of
DefaultPollingEndpoint. The problem is that DefaultPollingEndpoint wraps
PollingConsumer into DefaultScheduledPollConsumer and the latter does not call
PollingConsumerSupport.start:
DefaultScheduledPollConsumer.java:
@Override
protected void doStart() throws Exception {
pollingConsumer = getEndpoint().createPollingConsumer();
super.doStart();
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.