Skip to content

Commit 9543032

Browse files
committed
fix(process): use join3 instead of join macro
1 parent d1f1181 commit 9543032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compio-process/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ impl Child {
387387
Either::Right(std::future::ready(BufResult(Ok(0), vec![])))
388388
};
389389
let (status, BufResult(out_res, stdout), BufResult(err_res, stderr)) =
390-
futures_util::join!(status, stdout, stderr);
390+
futures_util::future::join3(status, stdout, stderr).await;
391391
let status = status?;
392392
out_res?;
393393
err_res?;

0 commit comments

Comments
 (0)