From c4e27de26defb5af6a23f67bb8108781425d8259 Mon Sep 17 00:00:00 2001 From: croway Date: Fri, 4 Sep 2026 10:24:01 +0200 Subject: [PATCH] Fix widget-gadget example: use guest/guest RabbitMQ creds, correct README dir application.properties hardcoded artemis/artemis credentials with a stray spring.artemis.mode=native, leftover from an ActiveMQ example copy-paste. camel infra run rabbitmq provisions guest/guest, so the app failed to authenticate out of the box. Also fixed README's cd spring-boot-widget-gadget to match the actual widget-gadget directory name. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01JvQJNT1UYzqUm5HQtkL6Nu --- widget-gadget/README.adoc | 2 +- widget-gadget/src/main/resources/application.properties | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/widget-gadget/README.adoc b/widget-gadget/README.adoc index 9905a341e..7f3ebc5c2 100644 --- a/widget-gadget/README.adoc +++ b/widget-gadget/README.adoc @@ -23,7 +23,7 @@ After that, you can build this example using: [source,sh] ---- -$ cd spring-boot-widget-gadget +$ cd widget-gadget $ mvn package ---- diff --git a/widget-gadget/src/main/resources/application.properties b/widget-gadget/src/main/resources/application.properties index e911a3746..e98c6d29e 100644 --- a/widget-gadget/src/main/resources/application.properties +++ b/widget-gadget/src/main/resources/application.properties @@ -15,7 +15,6 @@ ## limitations under the License. ## --------------------------------------------------------------------------- -spring.artemis.mode=native AMQP_REMOTE_URI=amqp://localhost:5672 -AMQP_SERVICE_USERNAME=artemis -AMQP_SERVICE_PASSWORD=artemis \ No newline at end of file +AMQP_SERVICE_USERNAME=guest +AMQP_SERVICE_PASSWORD=guest \ No newline at end of file