From f0cd4eda7020d5e86576b480fb0804a1016453ed Mon Sep 17 00:00:00 2001 From: Leonard Goodell Date: Wed, 30 Nov 2022 17:34:55 -0700 Subject: [PATCH] refactor!: Change Config stem constants to flatten config layout BREAKING CHANGE: Location of service configuartion in Config Provider (Consul) has changed closes #775 Signed-off-by: Leonard Goodell --- common/constants.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/common/constants.go b/common/constants.go index b78e50f5..a963b039 100644 --- a/common/constants.go +++ b/common/constants.go @@ -305,8 +305,9 @@ const ( ) const ( - ConfigStemApp = "edgex/appservices/" - ConfigStemCore = "edgex/core/" - ConfigStemDevice = "edgex/devices/" - ConfigStemSecurity = "edgex/security/" + ConfigStemAll = "edgex/3.0" + ConfigStemApp = ConfigStemAll + ConfigStemCore = ConfigStemAll + ConfigStemDevice = ConfigStemAll + ConfigStemSecurity = ConfigStemAll )