mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-29 04:31:44 +00:00
NewTicker -> NewTimer, to fix a memory leak
This commit is contained in:
@ -487,9 +487,9 @@ func newChannel(conn *MConnection, desc *ChannelDescriptor) *Channel {
|
|||||||
// Goroutine-safe
|
// Goroutine-safe
|
||||||
// Times out (and returns false) after defaultSendTimeoutSeconds
|
// Times out (and returns false) after defaultSendTimeoutSeconds
|
||||||
func (ch *Channel) sendBytes(bytes []byte) bool {
|
func (ch *Channel) sendBytes(bytes []byte) bool {
|
||||||
sendTicker := time.NewTicker(defaultSendTimeoutSeconds * time.Second)
|
timeout := time.NewTimer(defaultSendTimeoutSeconds * time.Second)
|
||||||
select {
|
select {
|
||||||
case <-sendTicker.C:
|
case <-timeout.C:
|
||||||
// timeout
|
// timeout
|
||||||
return false
|
return false
|
||||||
case ch.sendQueue <- bytes:
|
case ch.sendQueue <- bytes:
|
||||||
|
Reference in New Issue
Block a user