@@ -27,6 +27,7 @@ mod sidecar_control;
2727use miette:: { IntoDiagnostic , Result , WrapErr } ;
2828use std:: collections:: { BTreeMap , BTreeSet , HashSet } ;
2929use std:: future:: Future ;
30+ use std:: path:: PathBuf ;
3031use std:: pin:: Pin ;
3132use std:: sync:: Arc ;
3233#[ cfg( target_os = "linux" ) ]
@@ -628,7 +629,7 @@ pub async fn run_sandbox(
628629 retained_proto : retained_proto. clone ( ) ,
629630 openshell_endpoint : openshell_endpoint. clone ( ) ,
630631 sandbox_id : sandbox_id. clone ( ) ,
631- trusted_ssh_socket_path : std :: path :: PathBuf :: from ( trusted_ssh_socket_path) ,
632+ trusted_ssh_socket_path : PathBuf :: from ( trusted_ssh_socket_path) ,
632633 control_publisher : sidecar_control_publisher. clone ( ) ,
633634 } ,
634635 ) ;
@@ -1326,7 +1327,7 @@ struct SidecarEntrypointHandler {
13261327 retained_proto : Option < openshell_core:: proto:: SandboxPolicy > ,
13271328 openshell_endpoint : Option < String > ,
13281329 sandbox_id : Option < String > ,
1329- trusted_ssh_socket_path : std :: path :: PathBuf ,
1330+ trusted_ssh_socket_path : PathBuf ,
13301331 control_publisher : Option < sidecar_control:: Publisher > ,
13311332}
13321333
0 commit comments