Skip to content

Commit aeaa5db

Browse files
Apply the same fix to on_grpc_receiving_trailing_metadata() too
Signed-off-by: erikness-doordash <[email protected]>
1 parent abfec5d commit aeaa5db

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/dispatcher.rs

+11-5
Original file line numberDiff line numberDiff line change
@@ -491,11 +491,17 @@ impl Dispatcher {
491491
}
492492

493493
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+
};
499505

500506
if let Some(http_stream) = self.http_streams.borrow_mut().get_mut(&context_id) {
501507
self.active_id.set(context_id);

0 commit comments

Comments
 (0)