We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0793102 commit 105b431Copy full SHA for 105b431
crates/mdbx-remote/src/service.rs
@@ -389,7 +389,7 @@ impl RemoteMDBX for RemoteMDBXServer {
389
let val = if let Some(tx) = env.rwtxs.get(&tx) {
390
let tx = tx.tx.clone();
391
drop(lg);
392
- tokio::task::spawn_blocking(move || tx.get::<Vec<u8>>(dbi, &key)).await??
+ tx.get::<Vec<u8>>(dbi, &key)?
393
} else if let Some(ro) = env.rotxs.get(&tx) {
394
let tx_clone = ro.tx.clone();
395
0 commit comments