From 4c181c9671747642ba361e52d3b30ffac72c4971 Mon Sep 17 00:00:00 2001 From: Andreas Evers Date: Mon, 5 Feb 2018 13:49:40 +0100 Subject: [PATCH] Small fix for wrong routes details endpoint (#2706) --- docs/src/main/asciidoc/spring-cloud-netflix.adoc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-netflix.adoc b/docs/src/main/asciidoc/spring-cloud-netflix.adoc index f24d3b6b..29548712 100644 --- a/docs/src/main/asciidoc/spring-cloud-netflix.adoc +++ b/docs/src/main/asciidoc/spring-cloud-netflix.adoc @@ -1781,8 +1781,7 @@ routes: } ---- -Additional route details can be requested by adding the `?format=details` query -string to `/routes`. This will produce the following output: +Additional route details can be requested through the `/routes/details` endpoint. This will produce the following output: .GET /routes/details [source,json] @@ -1801,12 +1800,12 @@ string to `/routes`. This will produce the following output: } ---- -A POST will force a refresh of the existing routes (e.g. in +A POST to `/routes` will force a refresh of the existing routes (e.g. in case there have been changes in the service catalog). You can disable this endpoint by setting `endpoints.routes.enabled` to `false`. NOTE: the routes should respond automatically to changes in the -service catalog, but the POST to /routes is a way to force the change +service catalog, but the POST to `/routes` is a way to force the change to happen immediately. ==== Filters Endpoint