From 2e2cf7b25b9bc2d4481a761410060dfba5fadd0a Mon Sep 17 00:00:00 2001 From: William Wen <44139337+wenym1@users.noreply.github.com> Date: Fri, 24 Nov 2023 11:22:06 +0800 Subject: [PATCH] fix(storage): avoid event handler panics (#13632) --- src/storage/src/hummock/event_handler/hummock_event_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/src/hummock/event_handler/hummock_event_handler.rs b/src/storage/src/hummock/event_handler/hummock_event_handler.rs index b19464e0322cf..50e128702dcec 100644 --- a/src/storage/src/hummock/event_handler/hummock_event_handler.rs +++ b/src/storage/src/hummock/event_handler/hummock_event_handler.rs @@ -628,7 +628,7 @@ impl HummockEventHandler { )) { Ok(_) => {} Err(_) => { - panic!( + warn!( "RegisterReadVersion send fail table_id {:?} instance_is {:?}", table_id, instance_id )