Upgrade versions; prepare for 2.4.0-M2

This commit is contained in:
Gary Russell
2021-09-17 10:22:53 -04:00
parent 7e3f7bfc56
commit 42e37cdd67
2 changed files with 10 additions and 11 deletions

View File

@@ -31,7 +31,8 @@ public abstract class AbstractIntegrationTests {
static final GenericContainer<?> RABBITMQ;
static {
if (System.getProperty("spring.rabbit.use.local.server") == null) {
if (System.getProperty("spring.rabbit.use.local.server") == null
&& System.getenv("SPRING_RABBIT_USE_LOCAL_SERVER") == null) {
String image = "pivotalrabbitmq/rabbitmq-stream";
String cache = System.getenv().get("IMAGE_CACHE");
if (cache != null) {