diff --git a/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesBuildTimeConfig.java b/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesBuildTimeConfig.java index 6ee5be972032b..9e21d4b3c54b3 100644 --- a/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesBuildTimeConfig.java +++ b/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesBuildTimeConfig.java @@ -30,18 +30,20 @@ public class AmqpDevServicesBuildTimeConfig { * The image to use. * Note that only ActiveMQ Artemis images are supported. * Specifically, the image repository must end with {@code artemiscloud/activemq-artemis-broker}. - * + *

* Check the activemq-artemis-broker on Quay * page * to find the available versions. */ - @ConfigItem(defaultValue = "quay.io/artemiscloud/activemq-artemis-broker:1.0.18") + @ConfigItem(defaultValue = "quay.io/artemiscloud/activemq-artemis-broker:1.0.22") public String imageName; /** * The value of the {@code AMQ_EXTRA_ARGS} environment variable to pass to the container. + * For ActiveMQ Artemis Broker <= 1.0.21, set this property to + * {@code --no-autotune --mapped --no-fsync --relax-jolokia --http-host 0.0.0.0} */ - @ConfigItem(defaultValue = "--no-autotune --mapped --no-fsync --relax-jolokia --http-host 0.0.0.0") + @ConfigItem(defaultValue = "--no-autotune --mapped --no-fsync --relax-jolokia") public String extraArgs; /** diff --git a/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesProcessor.java b/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesProcessor.java index dabcbcf33c1b2..adc0cc2555bd7 100644 --- a/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesProcessor.java +++ b/extensions/smallrye-reactive-messaging-amqp/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/amqp/deployment/AmqpDevServicesProcessor.java @@ -37,8 +37,8 @@ /** * Starts a AMQP 1.0 broker as dev service if needed. - * It uses https://quay.io/repository/artemiscloud/activemq-artemis-broker as image. - * See https://artemiscloud.io/ for details. + * It uses activemq-artemis-broker as image. + * See Artemis Cloud for details. */ @BuildSteps(onlyIfNot = IsNormal.class, onlyIf = GlobalDevServicesConfig.Enabled.class) public class AmqpDevServicesProcessor {