Skip to content

Commit

Permalink
svs: reduce channel sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed Feb 5, 2025
1 parent 52d2baf commit e8f0063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/sync/svs_alo.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ func NewSvsALO(opts SvsAloOpts) *SvsALO {
nodePs: NewSimplePs[SvsPub](),

outpipe: make(chan svsPubOut, 256),
errpipe: make(chan error, 256),
publpipe: make(chan enc.Name, 256),
errpipe: make(chan error, 16),
publpipe: make(chan enc.Name, 16),
stop: make(chan struct{}),

onError: func(err error) { log.Error(nil, err.Error()) },
Expand Down

0 comments on commit e8f0063

Please sign in to comment.