removing logging of error on empty channel in block listner
This commit is contained in:
parent
18a220e790
commit
0f567b50fc
|
@ -296,8 +296,9 @@ impl BlockListener {
|
|||
BLOCKS_IN_RETRY_QUEUE.inc();
|
||||
};
|
||||
},
|
||||
Err(e) => {
|
||||
error!("Error on block listner recv stream {e:?}");
|
||||
Err(_) => {
|
||||
// We get error because channel is empty we retry recv again
|
||||
tokio::time::sleep(Duration::from_millis(1)).await;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue