Skip to content

Commit 39397ed

Browse files
committed
Increase timeout for reply
See gh-1574
1 parent 64e4c02 commit 39397ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-ws-support/src/test/java/org/springframework/ws/transport/jms/JmsMessageSenderIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ private static MessageFactory createMessageFactory() {
215215
private void waitForReply(String destinationName) {
216216
JmsTemplate jmsTemplate = new JmsTemplate(this.connectionFactory);
217217
Awaitility.await()
218-
.atMost(Duration.ofSeconds(3))
218+
.atMost(Duration.ofSeconds(10))
219219
.until(() -> jmsTemplate.browse(destinationName, new BrowserCallback<Boolean>() {
220220
@Override
221221
public Boolean doInJms(Session session, QueueBrowser browser) throws JMSException {

0 commit comments

Comments
 (0)