dont add finished future
This commit is contained in:
parent
451637a644
commit
df0b98bfdd
|
@ -287,7 +287,9 @@ proc sendEncoded*(p: PubSubPeer, msg: seq[byte], isHighPriority: bool = false) {
|
||||||
return
|
return
|
||||||
|
|
||||||
if isHighPriority:
|
if isHighPriority:
|
||||||
p.rpcmessagequeue.sendPriorityQueue.addLast(p.sendMsg(msg))
|
let f = p.sendMsg(msg)
|
||||||
|
if not f.finished:
|
||||||
|
p.rpcmessagequeue.sendPriorityQueue.addLast(f)
|
||||||
when defined(libp2p_expensive_metrics):
|
when defined(libp2p_expensive_metrics):
|
||||||
libp2p_gossipsub_priority_queue_size.inc(labelValues = [$p.peerId])
|
libp2p_gossipsub_priority_queue_size.inc(labelValues = [$p.peerId])
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue