We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66ae8f3 + 896180e commit 8987c21Copy full SHA for 8987c21
libsql-server/src/namespace/mod.rs
@@ -92,7 +92,9 @@ impl Namespace {
92
self.checkpoint().await?;
93
}
94
self.db.shutdown().await?;
95
- let _ = tokio::fs::remove_file(self.path.join(".sentinel")).await;
+ if let Err(e) = tokio::fs::remove_file(self.path.join(".sentinel")).await {
96
+ tracing::error!("unable to remove .sentinel file: {}", e);
97
+ }
98
Ok(())
99
100
0 commit comments