We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dfa72d commit 79597e9Copy full SHA for 79597e9
src/dispatcher.rs
@@ -16,6 +16,7 @@ use crate::hostcalls;
16
use crate::traits::*;
17
use crate::types::*;
18
use hashbrown::HashMap;
19
+use log::trace;
20
use std::cell::{Cell, RefCell};
21
22
thread_local! {
@@ -535,7 +536,8 @@ impl Dispatcher {
535
536
root.on_grpc_stream_close(token_id, status_code)
537
}
538
} else {
- panic!("invalid token_id")
539
+ // TODO: change back to a panic once underlying issue is fixed.
540
+ trace!("on_grpc_close: invalid token_id, a non-connected stream has closed");
541
542
543
0 commit comments