Merge branch '4.1.x'

Closes gh-1558
This commit is contained in:
Stéphane Nicoll
2025-05-06 10:16:01 +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;
}