From 000656ac6b13d52f9e36be65ec17f84128411bbd Mon Sep 17 00:00:00 2001 From: Shireesh Anjal <355479+anjalshireesh@users.noreply.github.com> Date: Tue, 8 Jun 2021 01:13:21 +0530 Subject: [PATCH] Do not send 'sensitive' flag to client (#12461) As it is server specific and is not required on client side. --- internal/config/help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/help.go b/internal/config/help.go index 19fc4be5b..faebda5e7 100644 --- a/internal/config/help.go +++ b/internal/config/help.go @@ -27,7 +27,7 @@ type HelpKV struct { // Indicates if the value contains sensitive info // that shouldn't be exposed in certain apis - Sensitive bool `json:"sensitive"` + Sensitive bool `json:"-"` // Indicates if sub-sys supports multiple targets. MultipleTargets bool `json:"multipleTargets"`