Remove superfluous Options.Checksum type conversions (#522)

This commit is contained in:
Travis Groth 2020-03-06 17:59:26 -05:00 committed by GitHub
parent 27909f22ce
commit e666306ef8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 17 additions and 22 deletions

View file

@ -182,7 +182,7 @@ func (p *Proxy) UpdateOptions(o config.Options) error {
if p == nil {
return nil
}
log.Info().Msg("proxy: updating options")
log.Info().Str("checksum", fmt.Sprintf("%x", o.Checksum())).Msg("proxy: updating options")
return p.UpdatePolicies(&o)
}