Skip to content

Commit 865da32

Browse files
committed
Fix flush call by removing unnecessary assignment in fdb_archive.rs
1 parent 62b7374 commit 865da32

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rust/crates/fdb/examples/fdb_archive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
5555
}
5656

5757
// Flush to persist
58-
let () = fdb.flush()?;
58+
fdb.flush()?;
5959
println!("Data archived and flushed successfully");
6060

6161
// Show stats

0 commit comments

Comments
 (0)