From 09f7578ca687f6340403d788e6c0350c8f147cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Fri, 5 Jul 2024 10:24:00 +0200 Subject: [PATCH] Deactivate Quarkus telemetry causing stacktrace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Users won't have the possibility to answer to the question and we need to keep it opt-in fixes devfile/api#1611 Signed-off-by: Aurélien Pupier --- stacks/java-quarkus/1.3.0/devfile.yaml | 4 ++-- stacks/java-quarkus/1.3.1/devfile.yaml | 4 ++-- stacks/java-quarkus/1.4.0/devfile.yaml | 4 ++-- stacks/java-quarkus/1.4.1/devfile.yaml | 4 ++-- stacks/java-quarkus/1.5.0/devfile.yaml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/stacks/java-quarkus/1.3.0/devfile.yaml b/stacks/java-quarkus/1.3.0/devfile.yaml index caa7a5f3..7dc55674 100644 --- a/stacks/java-quarkus/1.3.0/devfile.yaml +++ b/stacks/java-quarkus/1.3.0/devfile.yaml @@ -50,7 +50,7 @@ commands: - id: dev-run exec: component: tools - commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0' + commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true' hotReloadCapable: true group: kind: run @@ -59,7 +59,7 @@ commands: - id: dev-debug exec: component: tools - commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}' + commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true -Ddebug=${DEBUG_PORT}' hotReloadCapable: true group: kind: debug diff --git a/stacks/java-quarkus/1.3.1/devfile.yaml b/stacks/java-quarkus/1.3.1/devfile.yaml index 9c6c0054..dc9357aa 100644 --- a/stacks/java-quarkus/1.3.1/devfile.yaml +++ b/stacks/java-quarkus/1.3.1/devfile.yaml @@ -49,7 +49,7 @@ commands: - id: dev-run exec: component: tools - commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0' + commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true' hotReloadCapable: true group: kind: run @@ -58,7 +58,7 @@ commands: - id: dev-debug exec: component: tools - commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}' + commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true -Ddebug=${DEBUG_PORT}' hotReloadCapable: true group: kind: debug diff --git a/stacks/java-quarkus/1.4.0/devfile.yaml b/stacks/java-quarkus/1.4.0/devfile.yaml index f5a12890..8df61c49 100644 --- a/stacks/java-quarkus/1.4.0/devfile.yaml +++ b/stacks/java-quarkus/1.4.0/devfile.yaml @@ -51,7 +51,7 @@ commands: - id: dev-run exec: component: tools - commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0' + commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true' hotReloadCapable: true group: kind: run @@ -60,7 +60,7 @@ commands: - id: dev-debug exec: component: tools - commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}' + commandLine: 'mvn -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true -Ddebug=${DEBUG_PORT}' hotReloadCapable: true group: kind: debug diff --git a/stacks/java-quarkus/1.4.1/devfile.yaml b/stacks/java-quarkus/1.4.1/devfile.yaml index 56013365..042e4eda 100644 --- a/stacks/java-quarkus/1.4.1/devfile.yaml +++ b/stacks/java-quarkus/1.4.1/devfile.yaml @@ -50,7 +50,7 @@ commands: - id: dev-run exec: component: tools - commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0' + commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true' hotReloadCapable: true group: kind: run @@ -59,7 +59,7 @@ commands: - id: dev-debug exec: component: tools - commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}' + commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true -Ddebug=${DEBUG_PORT}' hotReloadCapable: true group: kind: debug diff --git a/stacks/java-quarkus/1.5.0/devfile.yaml b/stacks/java-quarkus/1.5.0/devfile.yaml index 01d3fbcb..4fd2c60c 100644 --- a/stacks/java-quarkus/1.5.0/devfile.yaml +++ b/stacks/java-quarkus/1.5.0/devfile.yaml @@ -50,7 +50,7 @@ commands: - id: dev-run exec: component: tools - commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0' + commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true' hotReloadCapable: true group: kind: run @@ -59,7 +59,7 @@ commands: - id: dev-debug exec: component: tools - commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Ddebug=${DEBUG_PORT}' + commandLine: './mvnw -Dmaven.repo.local=/home/user/.m2/repository quarkus:dev -Dquarkus.http.host=0.0.0.0 -Dquarkus.analytics.disabled=true -Ddebug=${DEBUG_PORT}' hotReloadCapable: true group: kind: debug