From fc1fdda9b1c5a963795aa8984b9b8d1a3702fdf0 Mon Sep 17 00:00:00 2001 From: Walter Medvedeo Date: Tue, 20 Feb 2024 16:44:08 +0100 Subject: [PATCH] SRVLOGIC-231: Disable question about collecting Quarkus analytics --- .../kogito-swf/devmode/runtime/common/added/run-app-devmode.sh | 1 + modules/kogito-swf/devmode/runtime/community/module.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/modules/kogito-swf/devmode/runtime/common/added/run-app-devmode.sh b/modules/kogito-swf/devmode/runtime/common/added/run-app-devmode.sh index d929b29aa..ba8edc658 100755 --- a/modules/kogito-swf/devmode/runtime/common/added/run-app-devmode.sh +++ b/modules/kogito-swf/devmode/runtime/common/added/run-app-devmode.sh @@ -48,4 +48,5 @@ fi -DskipTests \ -Dquarkus.http.host=0.0.0.0 \ -Dquarkus.test.continuous-testing=${QUARKUS_CONTINUOUS_TESTING:-disabled} \ + -Dquarkus.analytics.disabled=${QUARKUS_ANALYTICS_DISABLED:true} \ clean compile quarkus:dev \ No newline at end of file diff --git a/modules/kogito-swf/devmode/runtime/community/module.yaml b/modules/kogito-swf/devmode/runtime/community/module.yaml index c48ec7281..7d41976eb 100644 --- a/modules/kogito-swf/devmode/runtime/community/module.yaml +++ b/modules/kogito-swf/devmode/runtime/community/module.yaml @@ -34,6 +34,9 @@ envs: - name: QUARKUS_CONTINUOUS_TESTING description: Whether to enable Quarkus continous testing on DevMode or not. Default to "disabled". value: "disabled" + - name: QUARKUS_ANALYTICS_DISABLED + description: Whether to disable the Quarkus analytics data collecting on DevMode or not. Default to "true". + value: "true" - name: KOGITO_CODEGEN_PROCESS_FAILONERROR description: Boolean flag that will prevent Dev Mode to crash if the provided workflow is wrong. value: "false"