From 282b7ad7f503e496b2d01b2e7b00720fac8c4b08 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 12 Oct 2023 17:09:38 +0800 Subject: [PATCH] Fix "Description in the doc is wrong"(#318) (#319) --- docs/modules/ROOT/pages/config.adoc | 2 +- docs/modules/ROOT/pages/service-registry.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/config.adoc b/docs/modules/ROOT/pages/config.adoc index feeb8153..37072ad4 100644 --- a/docs/modules/ROOT/pages/config.adoc +++ b/docs/modules/ROOT/pages/config.adoc @@ -25,7 +25,7 @@ only to the instances of the service named `testApp`. Configuration is currently read on startup of the application. Sending a HTTP `POST` request to `/refresh` causes the configuration to be reloaded. Watching the configuration -namespace (which Zookeeper supports) is not currently implemented. +namespace (which Zookeeper supports) is also available. [[activating]] == Activating diff --git a/docs/modules/ROOT/pages/service-registry.adoc b/docs/modules/ROOT/pages/service-registry.adoc index 88e56c06..12d95380 100644 --- a/docs/modules/ROOT/pages/service-registry.adoc +++ b/docs/modules/ROOT/pages/service-registry.adoc @@ -38,7 +38,7 @@ instance status actuator endpoint, as shown in the following example: [source,sh,indent=0] ---- -$ http POST http://localhost:8081/service-registry status=OUT_OF_SERVICE +$ http POST http://localhost:8081/serviceregistry status=OUT_OF_SERVICE ---- NOTE: The preceding example uses the `http` command from https://httpie.org.