Skip to content

Commit

Permalink
Panic to trace for on_grpc_receive() as well
Browse files Browse the repository at this point in the history
Signed-off-by: erikness-doordash <[email protected]>
  • Loading branch information
erikness-doordash committed Oct 25, 2023
1 parent c4684fb commit 56e15b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dispatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,9 @@ impl Dispatcher {
root.on_grpc_stream_message(token_id, response_size);
}
} else {
panic!("invalid token_id")
// TODO: change back to a panic once underlying issue is fixed.
trace!("on_grpc_receive_initial_metadata: invalid token_id");
return;
}
}

Expand Down

0 comments on commit 56e15b4

Please sign in to comment.