Skip to content

Commit 56e15b4

Browse files
Panic to trace for on_grpc_receive() as well
Signed-off-by: erikness-doordash <[email protected]>
1 parent c4684fb commit 56e15b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/dispatcher.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,9 @@ impl Dispatcher {
483483
root.on_grpc_stream_message(token_id, response_size);
484484
}
485485
} else {
486-
panic!("invalid token_id")
486+
// TODO: change back to a panic once underlying issue is fixed.
487+
trace!("on_grpc_receive_initial_metadata: invalid token_id");
488+
return;
487489
}
488490
}
489491

0 commit comments

Comments
 (0)