File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -213,10 +213,10 @@ impl index::File {
213
213
div_decode_result ( & mut self . stats . average , self . chunks_seen ) ;
214
214
let elapsed_s = Instant :: now ( ) . duration_since ( self . then ) . as_secs_f32 ( ) ;
215
215
self . progress . lock ( ) . unwrap ( ) . info ( format ! (
216
- "Reduced {} objects in {:.2}s ({:.0 } objects/s)" ,
216
+ "Reduced {} objects in {:.2}s ({} objects/s)" ,
217
217
self . entries_seen,
218
218
elapsed_s,
219
- self . entries_seen as f32 / elapsed_s
219
+ ( self . entries_seen as f32 / elapsed_s) as u32
220
220
) ) ;
221
221
Ok ( self . stats )
222
222
}
Original file line number Diff line number Diff line change 31
31
* [ ] ~~ a verbose mode to list each object in a pack, similar to existing git-verify-pack~~
32
32
* [x] journey tests
33
33
* [x] display object throughput per second
34
+ * [ ] progress that allows TUI to remain open for people to see more log messages
34
35
* [ ] support for serde/miniserde for all returned data types (features per crate)
35
36
* ** stress**
36
37
* [ ] first stress test for validation of a big repository, linux maybe, or something smaller but big enough
You can’t perform that action at this time.
0 commit comments