Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Return non-zero exit code for non graceful shutdown #8

Merged
Prev Previous commit
fix missing semicolon
  • Loading branch information
alexander-jiang committed Jan 14, 2025
commit b05ef5581d38cbf408292b08c0357ce6370393a5
2 changes: 1 addition & 1 deletion lib/vector-buffers/src/variants/disk_v2/reader.rs
Original file line number Diff line number Diff line change
@@ -977,7 +977,7 @@ where
if self.ledger.is_writer_done() {
let total_buffer_size = self.ledger.get_total_buffer_size();
if total_buffer_size == 0 {
debug!("buffer writer is done and buffer is empty")
debug!("buffer writer is done and buffer is empty");
return Ok(None);
}
}