From b72d69159d424fa90b2171a9bbd8ab8f2a9f2d95 Mon Sep 17 00:00:00 2001 From: Antoine Sabot-Durand Date: Thu, 19 Mar 2020 17:36:03 +0100 Subject: [PATCH] Add feedback --- .../health/deployment/SmallRyeHealthProcessor.java | 8 ++++---- extensions/smallrye-health/runtime/pom.xml | 4 ---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java b/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java index e6cfd468115bb4..8b39390971cad4 100644 --- a/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java +++ b/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java @@ -68,25 +68,25 @@ class SmallRyeHealthProcessor { @ConfigRoot(name = "smallrye-health") static final class SmallRyeHealthConfig { /** - * Root path for health-checking servlets. + * Root path for health-checking endpoints. */ @ConfigItem(defaultValue = "/health") String rootPath; /** - * The relative path of the liveness health-checking servlet. + * The relative path of the liveness health-checking endpoint. */ @ConfigItem(defaultValue = "/live") String livenessPath; /** - * The relative path of the readiness health-checking servlet. + * The relative path of the readiness health-checking endpoint. */ @ConfigItem(defaultValue = "/ready") String readinessPath; /** - * The relative path of the health group servlet. + * The relative path of the health group endpoint. */ @ConfigItem(defaultValue = "/group") String groupPath; diff --git a/extensions/smallrye-health/runtime/pom.xml b/extensions/smallrye-health/runtime/pom.xml index 2188870cd8c485..f4c4fb6bb4d7c7 100644 --- a/extensions/smallrye-health/runtime/pom.xml +++ b/extensions/smallrye-health/runtime/pom.xml @@ -19,10 +19,6 @@ io.smallrye smallrye-health - - jakarta.inject - jakarta.inject-api - io.quarkus quarkus-core