From 9dbe87f03a1ac7fac0d0602ea365bb5dc3b33dc4 Mon Sep 17 00:00:00 2001 From: Ian Ngethe Muchiri <100555904+ianmuchyri@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:17:17 +0300 Subject: [PATCH] NOISSUE- Update bootstrapSDK endpoints (#1888) * Update bootstrapSDK constants Signed-off-by: ianmuchyri * Remove first slash Signed-off-by: ianmuchyri --------- Signed-off-by: ianmuchyri --- pkg/sdk/go/bootstrap.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/sdk/go/bootstrap.go b/pkg/sdk/go/bootstrap.go index 29ad2784..26a461a7 100644 --- a/pkg/sdk/go/bootstrap.go +++ b/pkg/sdk/go/bootstrap.go @@ -14,11 +14,11 @@ import ( ) const ( - configsEndpoint = "configs" - bootstrapEndpoint = "bootstrap" - whitelistEndpoint = "state" - bootstrapCertsEndpoint = "configs/certs" - bootstrapConnEndpoint = "configs/connections" + configsEndpoint = "things/configs" + bootstrapEndpoint = "things/bootstrap" + whitelistEndpoint = "things/state" + bootstrapCertsEndpoint = "things/configs/certs" + bootstrapConnEndpoint = "things/configs/connections" secureEndpoint = "secure" )