Skip to content

Commit 0bc0762

Browse files
garyrussellsnicoll
authored andcommitted
Fix JMS Doc typo
There is no such class `ReplyQosSettings`. Closes spring-projectsgh-1836
1 parent 051ab05 commit 0bc0762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docs/asciidoc/integration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2677,7 +2677,7 @@ the time to live, you can configure the `JmsListenerContainerFactory` accordingl
26772677
public DefaultJmsListenerContainerFactory jmsListenerContainerFactory() {
26782678
DefaultJmsListenerContainerFactory factory = new DefaultJmsListenerContainerFactory();
26792679
factory.setConnectionFactory(connectionFactory());
2680-
QosSettings replyQosSettings = new ReplyQosSettings();
2680+
QosSettings replyQosSettings = new QosSettings();
26812681
replyQosSettings.setPriority(2);
26822682
replyQosSettings.setTimeToLive(10000);
26832683
factory.setReplyQosSettings(replyQosSettings);

0 commit comments

Comments
 (0)