@@ -17,6 +17,7 @@ mod sidecar_control;
1717use miette:: { IntoDiagnostic , Result , WrapErr } ;
1818use std:: collections:: { BTreeMap , BTreeSet , HashSet } ;
1919use std:: future:: Future ;
20+ use std:: path:: PathBuf ;
2021use std:: pin:: Pin ;
2122use std:: sync:: Arc ;
2223#[ cfg( target_os = "linux" ) ]
@@ -618,7 +619,7 @@ pub async fn run_sandbox(
618619 retained_proto : retained_proto. clone ( ) ,
619620 openshell_endpoint : openshell_endpoint. clone ( ) ,
620621 sandbox_id : sandbox_id. clone ( ) ,
621- trusted_ssh_socket_path : std :: path :: PathBuf :: from ( trusted_ssh_socket_path) ,
622+ trusted_ssh_socket_path : PathBuf :: from ( trusted_ssh_socket_path) ,
622623 control_publisher : sidecar_control_publisher. clone ( ) ,
623624 } ,
624625 ) ;
@@ -1294,7 +1295,7 @@ struct SidecarEntrypointHandler {
12941295 retained_proto : Option < openshell_core:: proto:: SandboxPolicy > ,
12951296 openshell_endpoint : Option < String > ,
12961297 sandbox_id : Option < String > ,
1297- trusted_ssh_socket_path : std :: path :: PathBuf ,
1298+ trusted_ssh_socket_path : PathBuf ,
12981299 control_publisher : Option < sidecar_control:: Publisher > ,
12991300}
13001301
0 commit comments