From 6909fbe7ad3ff769283c2813e50dae9e2a275a00 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 16 Oct 2023 15:34:14 -0400 Subject: [PATCH] Fix race condition in `GatewayInterfaceTests` --- .../integration/gateway/GatewayInterfaceTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-core/src/test/java/org/springframework/integration/gateway/GatewayInterfaceTests.java b/spring-integration-core/src/test/java/org/springframework/integration/gateway/GatewayInterfaceTests.java index bea2abf5a0..fcd5c3410d 100644 --- a/spring-integration-core/src/test/java/org/springframework/integration/gateway/GatewayInterfaceTests.java +++ b/spring-integration-core/src/test/java/org/springframework/integration/gateway/GatewayInterfaceTests.java @@ -678,7 +678,7 @@ public class GatewayInterfaceTests { } @Bean - @BridgeTo(poller = @Poller(fixedDelay = "1000")) + @BridgeTo(value = "nullChannel", poller = @Poller(fixedDelay = "1000")) public MessageChannel gatewayQueueChannel() { return new QueueChannel(); }