Browse Source

fix user level parsing in freedom. fixes #1555

pull/1581/head
Darien Raymond 6 years ago
parent
commit
204b895576
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
  1. 2
      infra/conf/freedom.go

2
infra/conf/freedom.go

@ -29,7 +29,7 @@ func (c *FreedomConfig) Build() (proto.Message, error) {
case "useip6", "useipv6", "use_ipv6", "use_ip_v6", "use_ip6":
config.DomainStrategy = freedom.Config_USE_IP6
}
config.Timeout = 600
if c.Timeout != nil {
config.Timeout = *c.Timeout
}

Loading…
Cancel
Save