From 6de2eadeb0f102a87dec2697da0e3fe4c68796fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=A4rtens?= Date: Sat, 4 Jul 2020 10:32:52 +0200 Subject: [PATCH] make crash -> error for now --- network/src/participant.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/network/src/participant.rs b/network/src/participant.rs index 68a9832354..b2534253ef 100644 --- a/network/src/participant.rs +++ b/network/src/participant.rs @@ -380,6 +380,10 @@ impl BParticipant { } } }, + Frame::Shutdown => error!( + "Somehow this Shutdown signal got here, i should probably handle it. To not \ + crash let me just put this message here" + ), f => unreachable!("never reaches frame!: {:?}", f), } }