From 4278d7ad333c040060b32c29cc27b3ac9bd06c28 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Tue, 27 Jun 2023 16:36:35 +0200 Subject: [PATCH] Small doc adjustments noticed when backporting recent PRs (cherry picked from commit 55db899303344a306d2edddfd4b9dabdacb76dab) --- .../io/quarkus/deployment/dev/IsolatedRemoteDevModeMain.java | 2 +- docs/src/main/asciidoc/management-interface-reference.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/IsolatedRemoteDevModeMain.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/IsolatedRemoteDevModeMain.java index 9f01d40ddc4c6..4eb1f162bbf56 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/IsolatedRemoteDevModeMain.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/dev/IsolatedRemoteDevModeMain.java @@ -92,7 +92,7 @@ private synchronized JarResult generateApplication() { AugmentResult start = augmentAction.createProductionApplication(); if (!start.getJar().getType().equalsIgnoreCase(PackageConfig.BuiltInType.MUTABLE_JAR.getValue())) { throw new RuntimeException( - "remote-dev can only be used with mutable applications i.e, " + + "remote-dev can only be used with mutable applications i.e. " + "using the mutable-jar package type"); } //now extract the artifacts, to mirror the remote side diff --git a/docs/src/main/asciidoc/management-interface-reference.adoc b/docs/src/main/asciidoc/management-interface-reference.adoc index d959a733cd81e..fd7e0ca4bd7b0 100644 --- a/docs/src/main/asciidoc/management-interface-reference.adoc +++ b/docs/src/main/asciidoc/management-interface-reference.adoc @@ -31,7 +31,7 @@ For example, if you have `smallrye-health` installed, the readiness probe will b SmallRye Health Checks, SmallRye Metrics, Micrometer and Info endpoints will be declared as management endpoints when the management interface is enabled. -NOTE: The management interface will be disabled without extensions that use it. e.g. `smallrye-health`, `quarkus-smallrye-openapi`. +NOTE: The management interface is disabled when no extensions relying on it (such as the SmallRye Health or SmallRye OpenAPI extensions) are installed. == Configure the host, port and scheme