Skip to content

Commit 5dfe57d

Browse files
committed
Redis DelayerHRescheduleIntTests: unique groupId
https://build.spring.io/browse/INT-AT42SIO-595/ To avoid clashes with other parallel builds on CI for different versions on the same shared Redis make a testing `groupId` as unique using `UUID.randomUUID()` **Cherry-pick to 4.3.x & 4.2.x**
1 parent 08a2cd2 commit 5dfe57d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-integration-redis/src/test/java/org/springframework/integration/redis/store/DelayerHandlerRescheduleIntegrationTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import static org.junit.Assert.assertTrue;
2020
import static org.junit.Assert.fail;
2121

22+
import java.util.UUID;
2223
import java.util.concurrent.TimeUnit;
2324

2425
import org.junit.Rule;
@@ -46,7 +47,7 @@
4647
*/
4748
public class DelayerHandlerRescheduleIntegrationTests extends RedisAvailableTests {
4849

49-
public static final String DELAYER_ID = "delayerWithRedisMS";
50+
public static final String DELAYER_ID = "delayerWithRedisMS" + UUID.randomUUID();
5051

5152
@Rule
5253
public LongRunningIntegrationTest longTests = new LongRunningIntegrationTest();

0 commit comments

Comments
 (0)