diff --git a/app/policy/config.go b/app/policy/config.go index 7b78bd6e6..ed4bca27d 100644 --- a/app/policy/config.go +++ b/app/policy/config.go @@ -53,6 +53,11 @@ func (p *Policy) overrideWith(another *Policy) { p.Stats = new(Policy_Stats) *p.Stats = *another.Stats } + if another.Buffer != nil { + p.Buffer = &Policy_Buffer{ + Connection: another.Buffer.Connection, + } + } } // ToCorePolicy converts this Policy to core.Policy.