mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-26 17:40:37 +00:00
use tokio::try_join instead of futures::try_join
We don't use the `futures` crate much. Remove one of only two references to it (tokio has the identical macro).
This commit is contained in:
@@ -493,7 +493,7 @@ impl WalRedoProcess {
|
||||
Ok::<[u8; 8192], Error>(buf)
|
||||
};
|
||||
|
||||
let res = futures::try_join!(f_stdout, f_stdin)?;
|
||||
let res = tokio::try_join!(f_stdout, f_stdin)?;
|
||||
|
||||
let buf = res.0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user