From 56e112f4846158770b53f0ccfdbe30ea1c250583 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 22 May 2019 16:10:45 +0200 Subject: [PATCH] Increase API subscription buffer --- database/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/interface.go b/database/interface.go index d67aaff..12a0f17 100644 --- a/database/interface.go +++ b/database/interface.go @@ -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