src/backup/catalog.rs - SenderWriter: use tokio::task::block_in_place
Make sure we do not block the executor.
This commit is contained in:
parent
94609e2380
commit
d2dd827877
|
@ -384,10 +384,12 @@ impl SenderWriter {
|
||||||
|
|
||||||
impl Write for SenderWriter {
|
impl Write for SenderWriter {
|
||||||
fn write(&mut self, buf: &[u8]) -> Result<usize, std::io::Error> {
|
fn write(&mut self, buf: &[u8]) -> Result<usize, std::io::Error> {
|
||||||
futures::executor::block_on(async move {
|
tokio::task::block_in_place(|| {
|
||||||
self.0.send(Ok(buf.to_vec())).await
|
futures::executor::block_on(async move {
|
||||||
.map_err(|err| std::io::Error::new(std::io::ErrorKind::Other, err.to_string()))?;
|
self.0.send(Ok(buf.to_vec())).await
|
||||||
Ok(buf.len())
|
.map_err(|err| std::io::Error::new(std::io::ErrorKind::Other, err.to_string()))?;
|
||||||
|
Ok(buf.len())
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue