File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,10 @@ use std::{
2323 io:: { stderr, stdin, stdout} ,
2424 os:: fd:: { AsFd , AsRawFd } ,
2525 panic:: AssertUnwindSafe ,
26+ process:: Command ,
2627 sync:: Arc ,
2728} ;
28- use tokio:: { process :: Command , sync:: RwLock , task} ;
29+ use tokio:: { sync:: RwLock , task} ;
2930use tracing:: { debug, error, info} ;
3031use util:: Pipe ;
3132
@@ -213,7 +214,7 @@ pub async fn start_native_client_program(
213214 ] )
214215 . expect ( "No errors may occur when mapping file descriptors." ) ;
215216
216- let status = command. status ( ) . await . map_err ( |e| {
217+ let status = command. status ( ) . map_err ( |e| {
217218 error ! ( target: "client_program" , "Failed to execute client program: {:?}" , e) ;
218219 anyhow ! ( "Failed to execute client program: {:?}" , e)
219220 } ) ?;
You can’t perform that action at this time.
0 commit comments