-
Couldn't load subscription status.
- Fork 290
Archive: move indexer read-back to async task #2486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -193,37 +193,42 @@ async fn handle_block( | |||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| // Check 1 key | ||||||||||||||||||||
| if let Some(tx) = first { | ||||||||||||||||||||
| let tx = tx.tx; | ||||||||||||||||||||
| let key = tx.tx_hash(); | ||||||||||||||||||||
| match tx_index_archiver.get_tx_indexed_data(key).await { | ||||||||||||||||||||
| Ok(Some(resp)) => { | ||||||||||||||||||||
| if resp.header_subset.block_number != block_num | ||||||||||||||||||||
| || Some(&resp.receipt) != first_rx.as_ref() | ||||||||||||||||||||
| || Some(&resp.trace) != first_trace.as_ref() | ||||||||||||||||||||
| { | ||||||||||||||||||||
| warn!( | ||||||||||||||||||||
| key = key.encode_hex(), | ||||||||||||||||||||
| block_num, | ||||||||||||||||||||
| ?resp, | ||||||||||||||||||||
| "Returned index not as expected" | ||||||||||||||||||||
| ); | ||||||||||||||||||||
| } else { | ||||||||||||||||||||
| info!( | ||||||||||||||||||||
| tokio::spawn({ | ||||||||||||||||||||
| let tx_index_archiver = tx_index_archiver.clone(); | ||||||||||||||||||||
| async move { | ||||||||||||||||||||
| if let Some(tx) = first { | ||||||||||||||||||||
|
Comment on lines
+196
to
+199
|
||||||||||||||||||||
| tokio::spawn({ | |
| let tx_index_archiver = tx_index_archiver.clone(); | |
| async move { | |
| if let Some(tx) = first { | |
| let first_for_spawn = first.clone(); | |
| tokio::spawn({ | |
| let tx_index_archiver = tx_index_archiver.clone(); | |
| async move { | |
| if let Some(tx) = first_for_spawn { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The spawned task does not handle potential panics or task failures. Consider using a named task handle or adding error logging if the spawned task fails, as errors in detached tasks can be silently lost.