hide some deprecated fields from 'get' output (#20069)

also update wording on `subnet license="" api_key=""`
This commit is contained in:
Harshavardhana
2024-07-10 13:16:44 -07:00
committed by GitHub
parent 27538e2d22
commit a8c6465f22
6 changed files with 30 additions and 24 deletions

View File

@@ -42,12 +42,14 @@ const (
var (
DefaultKVS = config.KVS{
config.KV{
Key: URL,
Value: "",
Key: URL,
Value: "",
HiddenIfEmpty: true,
},
config.KV{
Key: AuthToken,
Value: "",
Key: AuthToken,
Value: "",
HiddenIfEmpty: true,
},
}
)