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 1be113a commit 7a9be84Copy full SHA for 7a9be84
src/store/fs/util/entity_manager.rs
@@ -400,7 +400,7 @@ mod main_actor {
400
match e {
401
mpsc::error::TrySendError::Full(cmd) => {
402
let entity_actor::Command::Spawn(spawn) = cmd else {
403
- panic!()
+ unreachable!()
404
};
405
warn!(
406
"Entity actor inbox is full, cannot send command to entity actor {:?}.",
@@ -412,7 +412,7 @@ mod main_actor {
412
}
413
mpsc::error::TrySendError::Closed(cmd) => {
414
415
416
417
error!(
418
"Entity actor inbox is closed, cannot send command to entity actor {:?}.",
0 commit comments