From d100a4f87a164ffbbdcb0eb9bc3e3382d3b2066b Mon Sep 17 00:00:00 2001 From: Matej Novotny Date: Mon, 15 May 2023 10:45:11 +0200 Subject: [PATCH] Arc - document the need to execute full rebuild to enable monitoring of bussiness method invocations --- .../main/java/io/quarkus/arc/deployment/ArcDevModeConfig.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/ArcDevModeConfig.java b/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/ArcDevModeConfig.java index f5966f30e4921..bfa6cd3d19ab6 100644 --- a/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/ArcDevModeConfig.java +++ b/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/ArcDevModeConfig.java @@ -8,6 +8,8 @@ public class ArcDevModeConfig { /** * If set to true then the container monitors business method invocations and fired events during the development mode. + *

+ * NOTE: This config property should not be changed in the development mode as it requires a full rebuild of the application */ @ConfigItem(defaultValue = "false") public boolean monitoringEnabled;