From 618b6128dfe8aca0c6daaa7b6028265661cc3c5d Mon Sep 17 00:00:00 2001 From: Priit Liivak Date: Tue, 18 Jul 2023 15:17:19 +0300 Subject: [PATCH] Using consistent naming for profile in the sample --- docs/src/main/asciidoc/quickstart.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/quickstart.adoc b/docs/src/main/asciidoc/quickstart.adoc index 280a10c378..7524eb46bf 100644 --- a/docs/src/main/asciidoc/quickstart.adoc +++ b/docs/src/main/asciidoc/quickstart.adoc @@ -57,8 +57,8 @@ curl localhost:8888/foo/development curl localhost:8888/foo/development/master curl localhost:8888/foo/development,db/master curl localhost:8888/foo-development.yml -curl localhost:8888/foo-db.properties -curl localhost:8888/master/foo-db.properties +curl localhost:8888/foo-development.properties +curl localhost:8888/master/foo-development.properties ---- where `application` is injected as the `spring.config.name` in the `SpringApplication` (what is normally `application` in a regular Spring Boot app), `profile` is an active profile (or comma-separated list of properties), and `label` is an optional git label (defaults to `master`.)