From 4a32ce0a191e9a0a3a3a963469216ccf20932c44 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Thu, 6 Jul 2023 14:49:29 -0700 Subject: [PATCH] only warn if unable to flush --- web3_proxy/src/stats/stat_buffer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3_proxy/src/stats/stat_buffer.rs b/web3_proxy/src/stats/stat_buffer.rs index cde0f1a5..a5976576 100644 --- a/web3_proxy/src/stats/stat_buffer.rs +++ b/web3_proxy/src/stats/stat_buffer.rs @@ -177,7 +177,7 @@ impl StatBuffer { warn!(%tsdb_count, %relational_count, ?err, "unable to notify about flushed stats"); } } else { - unimplemented!() + warn!("unable to flush stat buffer!"); } } x = shutdown_receiver.recv() => {