1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 01:12:24 +08:00

Increase channel buffer size in blockstore.AllKeysChan().

License: MIT
Signed-off-by: Kevin Atkinson <k@kevina.org>
This commit is contained in:
Kevin Atkinson
2016-07-10 15:35:27 -04:00
parent fd971ed934
commit 9e6cc1f112

View File

@ -196,7 +196,7 @@ func (bs *blockstore) AllKeysChan(ctx context.Context) (<-chan key.Key, error) {
} }
} }
output := make(chan key.Key) output := make(chan key.Key, dsq.KeysOnlyBufSize)
go func() { go func() {
defer func() { defer func() {
res.Process().Close() // ensure exit (signals early exit, too) res.Process().Close() // ensure exit (signals early exit, too)