Skip to content

Commit 105b431

Browse files
committed
Fix
1 parent 0793102 commit 105b431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/mdbx-remote/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ impl RemoteMDBX for RemoteMDBXServer {
389389
let val = if let Some(tx) = env.rwtxs.get(&tx) {
390390
let tx = tx.tx.clone();
391391
drop(lg);
392-
tokio::task::spawn_blocking(move || tx.get::<Vec<u8>>(dbi, &key)).await??
392+
tx.get::<Vec<u8>>(dbi, &key)?
393393
} else if let Some(ro) = env.rotxs.get(&tx) {
394394
let tx_clone = ro.tx.clone();
395395
drop(lg);

0 commit comments

Comments
 (0)