in src/main/java/org/apache/sling/jms/impl/JMSTopicManager.java [245:254]
public void close() throws IOException {
for (MessageConsumer c : consumers) {
try {
LOGGER.info("Closing consumer on dispose {} ",c);
c.close();
} catch (JMSException e) {
LOGGER.warn(e.getMessage(), e);
}
}
}