@@ -28,6 +28,7 @@ mod sidecar_control;
2828use miette:: { IntoDiagnostic , Result , WrapErr } ;
2929use std:: collections:: { BTreeMap , BTreeSet , HashSet } ;
3030use std:: future:: Future ;
31+ use std:: path:: PathBuf ;
3132use std:: pin:: Pin ;
3233use std:: sync:: Arc ;
3334#[ cfg( target_os = "linux" ) ]
@@ -674,7 +675,7 @@ pub async fn run_sandbox(
674675 retained_proto : retained_proto. clone ( ) ,
675676 openshell_endpoint : openshell_endpoint. clone ( ) ,
676677 sandbox_id : sandbox_id. clone ( ) ,
677- trusted_ssh_socket_path : std :: path :: PathBuf :: from ( trusted_ssh_socket_path) ,
678+ trusted_ssh_socket_path : PathBuf :: from ( trusted_ssh_socket_path) ,
678679 control_publisher : sidecar_control_publisher. clone ( ) ,
679680 supervisor_session_updates : supervisor_session_updates. clone ( ) ,
680681 } ,
@@ -1382,7 +1383,7 @@ struct SidecarEntrypointHandler {
13821383 retained_proto : Option < openshell_core:: proto:: SandboxPolicy > ,
13831384 openshell_endpoint : Option < String > ,
13841385 sandbox_id : Option < String > ,
1385- trusted_ssh_socket_path : std :: path :: PathBuf ,
1386+ trusted_ssh_socket_path : PathBuf ,
13861387 control_publisher : Option < sidecar_control:: Publisher > ,
13871388 supervisor_session_updates : tokio:: sync:: watch:: Sender < Option < String > > ,
13881389}
0 commit comments