Merge pull request #1526 from nats-io/no-header-support-option

added 'no_header_support' config option mapping to NoHeaderSupport
This commit is contained in:
Derek Collison
2020-07-22 12:13:30 -05:00
committed by GitHub

View File

@@ -886,6 +886,8 @@ func (o *Options) processConfigFileLine(k string, v interface{}, errors *[]error
return
case "no_system_account", "no_system", "no_sys_acc":
o.NoSystemAccount = v.(bool)
case "no_header_support":
o.NoHeaderSupport = v.(bool)
case "trusted", "trusted_keys":
switch v := v.(type) {
case string: