File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88mod activity_aggregator;
99mod denial_aggregator;
10+ #[ cfg_attr( not( target_os = "linux" ) , allow( dead_code) ) ]
1011mod google_cloud_metadata;
1112mod mechanistic_mapper;
13+ #[ cfg_attr( not( target_os = "linux" ) , allow( dead_code) ) ]
1214mod metadata_server;
1315
1416use miette:: Result ;
@@ -65,6 +67,7 @@ use openshell_supervisor_network::opa::OpaEngine;
6567pub use openshell_supervisor_process:: process:: { ProcessHandle , ProcessStatus } ;
6668use openshell_supervisor_process:: skills;
6769use tokio:: sync:: mpsc:: UnboundedSender ;
70+ #[ cfg( target_os = "linux" ) ]
6871use tokio:: time:: timeout;
6972
7073/// Run a command in the sandbox.
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ pub async fn run_server(
344344
345345 let state = Arc :: new ( state) ;
346346
347- let ( _shutdown_tx , shutdown_rx) = watch:: channel ( false ) ;
347+ let ( shutdown_tx , shutdown_rx) = watch:: channel ( false ) ;
348348
349349 // Resume sandboxes that were stopped during the previous gateway
350350 // shutdown so the running compute state matches the persisted store.
You can’t perform that action at this time.
0 commit comments