diff --git a/common/client-core/surb-storage/src/lib.rs b/common/client-core/surb-storage/src/lib.rs index 9e0ba14b341..b1c0f3088b6 100644 --- a/common/client-core/surb-storage/src/lib.rs +++ b/common/client-core/surb-storage/src/lib.rs @@ -33,7 +33,6 @@ where self.backend.load_surb_storage().await } - // this will have to get enabled after merging develop pub async fn flush_on_shutdown( mut self, mem_state: CombinedReplyStorage, @@ -50,7 +49,6 @@ where shutdown.recv().await; info!("PersistentReplyStorage is flushing all reply-related data to underlying storage"); - info!("you MUST NOT forcefully shutdown now or you risk data corruption!"); if let Err(err) = self.backend.flush_surb_storage(&mem_state).await { error!("failed to flush our reply-related data to the persistent storage: {err}") } else {