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:
Eric Seppanen
2021-05-03 18:22:53 -07:00
parent effcabb590
commit ce646ea845

View File

@@ -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;