Increase API subscription buffer

This commit is contained in:
Daniel 2019-05-22 16:10:45 +02:00
parent ab05357b51
commit 56e112f484

View file

@ -307,7 +307,7 @@ func (i *Interface) Subscribe(q *query.Query) (*Subscription, error) {
q: q,
local: i.options.Local,
internal: i.options.Internal,
Feed: make(chan record.Record, 100),
Feed: make(chan record.Record, 1000),
}
c.addSubscription(sub)
return sub, nil