File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -491,11 +491,17 @@ impl Dispatcher {
491
491
}
492
492
493
493
fn on_grpc_receive_trailing_metadata ( & self , token_id : u32 , trailers : u32 ) {
494
- let context_id = * self
495
- . grpc_streams
496
- . borrow_mut ( )
497
- . get ( & token_id)
498
- . expect ( "invalid token_id" ) ;
494
+ let grpc_streams_ref = self . grpc_streams . borrow_mut ( ) ;
495
+ let context_id_hash_slot = grpc_streams_ref
496
+ . get ( & token_id) ;
497
+ let context_id = match context_id_hash_slot {
498
+ Some ( id) => * id,
499
+ None => {
500
+ // TODO: change back to a panic once underlying issue is fixed.
501
+ trace ! ( "on_grpc_receive_initial_metadata: invalid token_id" ) ;
502
+ return ;
503
+ }
504
+ } ;
499
505
500
506
if let Some ( http_stream) = self . http_streams . borrow_mut ( ) . get_mut ( & context_id) {
501
507
self . active_id . set ( context_id) ;
You can’t perform that action at this time.
0 commit comments