This commit is contained in:
Bryan Stitt 2022-05-13 17:58:31 +00:00
parent add6fd76b0
commit 9e167b8289
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Todo
- [ ] endpoint for health checks. if no synced servers, give a 502 error
- [ ] some production configs are occassionally stuck waiting at 100% cpu
- looks like its getting stuck on `futex(0x7fc15067b478, FUTEX_WAIT_PRIVATE, 1, NULL`
- they stop processing new blocks. i'm guessing 2 blocks arrive at the same time, but i thought our locks would handle that

View File

@ -273,7 +273,7 @@ impl Web3Connections {
// TODO: hopefully nothing ends up in here twice. Greater+Equal might do that to us
synced_connections.inner.push(rpc_index);
trace!("Now synced {:?}: {:?}", self, synced_connections.inner);
info!("Now synced {:?}: {:?}", self, synced_connections.inner);
Ok(())
}