File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
src/common/base/src/runtime Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ use databend_common_exception::Result;
2727use databend_common_exception:: ResultExt ;
2828use futures:: future;
2929use futures:: FutureExt ;
30- use log:: info;
3130use log:: warn;
3231use tokio:: runtime:: Builder ;
3332use tokio:: runtime:: Handle ;
@@ -150,10 +149,6 @@ impl Runtime {
150149 let join_handler =
151150 Thread :: named_spawn ( n. as_ref ( ) . map ( |n| format ! ( "wait-to-drop-{n}" ) ) , move || {
152151 let _ = runtime. block_on ( recv_stop) ;
153- info ! (
154- "Runtime({:?}) received shutdown signal, start to shut down" ,
155- n
156- ) ;
157152
158153 match !cfg ! ( debug_assertions) {
159154 true => false ,
@@ -378,7 +373,6 @@ impl Drop for Dropper {
378373 // Send a signal to say i am dropping.
379374 if let Some ( close_sender) = self . close . take ( ) {
380375 if close_sender. send ( ( ) ) . is_ok ( ) {
381- info ! ( "close_sender to shutdown Runtime is sent" ) ;
382376 match self . join_handler . take ( ) . unwrap ( ) . join ( ) {
383377 Err ( e) => warn ! ( "Runtime dropper panic, {:?}" , e) ,
384378 Ok ( true ) => {
You can’t perform that action at this time.
0 commit comments