We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a6f1fb commit 894656fCopy full SHA for 894656f
src/query/service/src/interpreters/hook/vacuum_hook.rs
@@ -53,6 +53,10 @@ pub fn hook_vacuum_temp_files(query_ctx: &Arc<QueryContext>) -> Result<()> {
53
)
54
.await;
55
56
+ if let Err(cause) = &removed_files {
57
+ log::warn!("Vacuum temporary files has error: {:?}", cause);
58
+ }
59
+
60
if vacuum_limit != 0 && matches!(removed_files, Ok(res) if res == vacuum_limit as usize)
61
{
62
// Have not been removed files
0 commit comments