@@ -28,7 +28,7 @@ pub struct State {
2828 pub request_id : Uuid ,
2929 pub incoming_body_rx : Rc < Mutex < mpsc:: Receiver < Result < bytes:: Bytes , String > > > > ,
3030 pub outgoing_body_tx : mpsc:: Sender < bytes:: Bytes > ,
31- pub response_oneshot_tx : Option < oneshot:: Sender < http:: Response > > ,
31+ pub response_tx : Option < oneshot:: Sender < http:: Response > > ,
3232}
3333
3434pub struct Sandbox {
@@ -42,7 +42,7 @@ impl Sandbox {
4242 startup_snapshot : Option < & ' static [ u8 ] > ,
4343 incoming_body_rx : mpsc:: Receiver < Result < bytes:: Bytes , String > > ,
4444 outgoing_body_tx : mpsc:: Sender < bytes:: Bytes > ,
45- response_oneshot_tx : oneshot:: Sender < http:: Response > ,
45+ response_tx : oneshot:: Sender < http:: Response > ,
4646 ) -> Result < Self > {
4747 _ = CryptoProvider :: install_default ( aws_lc_rs:: default_provider ( ) ) ;
4848
@@ -52,7 +52,7 @@ impl Sandbox {
5252 res : None ,
5353 incoming_body_rx : Rc :: new ( Mutex :: new ( incoming_body_rx) ) ,
5454 outgoing_body_tx,
55- response_oneshot_tx : Some ( response_oneshot_tx ) ,
55+ response_tx : Some ( response_tx ) ,
5656 } ) ) ;
5757
5858 let extension_transpiler = Rc :: new ( loader:: transpile) ;
0 commit comments