File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1202,7 +1202,7 @@ fn evaluate_opa_tcp(
12021202#[ cfg( not( target_os = "linux" ) ) ]
12031203fn evaluate_opa_tcp (
12041204 _peer_addr : SocketAddr ,
1205- _engine : & OpaEngine ,
1205+ engine : & OpaEngine ,
12061206 _identity_cache : & BinaryIdentityCache ,
12071207 _entrypoint_pid : & AtomicU32 ,
12081208 _host : & str ,
@@ -1212,7 +1212,7 @@ fn evaluate_opa_tcp(
12121212 action : NetworkAction :: Deny {
12131213 reason : "identity binding unavailable on this platform" . into ( ) ,
12141214 } ,
1215- generation : _engine . current_generation ( ) ,
1215+ generation : engine . current_generation ( ) ,
12161216 binary : None ,
12171217 binary_pid : None ,
12181218 ancestors : vec ! [ ] ,
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ pub async fn run_cli() -> Result<()> {
291291
292292 let args = Args :: from_arg_matches ( & command ( ) . get_matches ( ) ) . expect ( "clap validated args" ) ;
293293
294- run_from_args ( args) . await
294+ Box :: pin ( run_from_args ( args) ) . await
295295}
296296
297297async fn run_from_args ( args : Args ) -> Result < ( ) > {
You can’t perform that action at this time.
0 commit comments