Compare commits

...

2 Commits

Author SHA1 Message Date
0g-peterzhb
c54346ba5f
Merge a83e518bfb into f21d691812 2024-11-21 10:33:59 +08:00
Peter Zhang
a83e518bfb remove unnecessary backtrace 2024-11-19 13:30:00 +08:00

View File

@ -2,7 +2,6 @@
extern crate tracing;
use anyhow::bail;
use backtrace::Backtrace;
use shared_types::{
Chunk, ChunkArray, ChunkArrayWithProof, DataRoot, FlowProof, FlowRangeProof, Transaction,
};
@ -140,9 +139,6 @@ impl Store {
{
let store = self.store.clone();
let (tx, rx) = oneshot::channel();
let mut backtrace = Backtrace::new();
let frames = backtrace.frames().to_vec();
backtrace = frames.into();
self.executor.spawn_blocking(
move || {
@ -150,7 +146,6 @@ impl Store {
let res = f(&*store);
if tx.send(res).is_err() {
warn!("Backtrace: {:?}", backtrace);
error!("Unable to complete async storage operation: the receiver dropped");
}
},