Merge branch '4.0.x' into 4.1.x

Closes gh-1557
This commit is contained in:
Stéphane Nicoll
2025-05-06 10:15:50 +02:00

View File

@@ -239,7 +239,7 @@ class JmsMessageSenderIntegrationTests {
@Bean
JmsMessageSender messageSender(ConnectionFactory connectionFactory) {
JmsMessageSender messageSender = new JmsMessageSender(connectionFactory);
messageSender.setReceiveTimeout(Duration.ofSeconds(1).toMillis());
messageSender.setReceiveTimeout(Duration.ofSeconds(2).toMillis());
return messageSender;
}