You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use lowercase for nested array keys due to Viper bug
Due to spf13/viper#1386, array keys with mixed
case are not parsed correctly. At least for the time being, mitigate
by changing some keys to all lowercase.
Signed-off-by: Andrew Richardson <andrew.richardson@kaleido.io>
Copy file name to clipboardexpand all lines: internal/coremsgs/en_config_descriptions.go
+2-2
Original file line number
Diff line number
Diff line change
@@ -252,8 +252,8 @@ var (
252
252
ConfigNamespacesPredefinedName=ffc("config.namespaces.predefined[].name", "The name of the namespace (must be unique)", i18n.StringType)
253
253
ConfigNamespacesPredefinedDescription=ffc("config.namespaces.predefined[].description", "A description for the namespace", i18n.StringType)
254
254
ConfigNamespacesPredefinedPlugins=ffc("config.namespaces.predefined[].plugins", "The list of plugins for this namespace", i18n.StringType)
255
-
ConfigNamespacesPredefinedRemoteName=ffc("config.namespaces.predefined[].remoteName", "The namespace name to be sent in plugin calls, if it differs from namespace name", i18n.StringType)
256
-
ConfigNamespacesPredefinedDefaultKey=ffc("config.namespaces.predefined[].defaultKey", "A default signing key for blockchain transactions within this namespace", i18n.StringType)
255
+
ConfigNamespacesPredefinedRemoteName=ffc("config.namespaces.predefined[].remotename", "The namespace name to be sent in plugin calls, if it differs from namespace name", i18n.StringType)
256
+
ConfigNamespacesPredefinedDefaultKey=ffc("config.namespaces.predefined[].defaultkey", "A default signing key for blockchain transactions within this namespace", i18n.StringType)
257
257
ConfigNamespacesMultipartyEnabled=ffc("config.namespaces.predefined[].multiparty.enabled", "Enables multi-party mode for this namespace (defaults to true if an org name or key is configured, either here or at the root level)", i18n.BooleanType)
258
258
ConfigNamespacesMultipartyOrgName=ffc("config.namespaces.predefined[].multiparty.org.name", "A short name for the local root organization within this namespace", i18n.StringType)
259
259
ConfigNamespacesMultipartyOrgDesc=ffc("config.namespaces.predefined[].multiparty.org.description", "A description for the local root organization within this namespace", i18n.StringType)
0 commit comments