File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,6 @@ bytes = "1.10.1"
127127rand = " 0.9.2"
128128indoc = " 2.0.6"
129129owo-colors = " 4.2.2"
130- atty = " 0.2.14"
131130json5 = " 0.4.1"
132131aws-config = " 1.8.5"
133132aws-sdk-s3 = " 1.102.0"
Original file line number Diff line number Diff line change @@ -214,7 +214,8 @@ impl std::fmt::Display for UpdateStats {
214214 let num_no_change = self . num_no_change . get ( ) ;
215215 let num_errors = self . num_errors . get ( ) ;
216216 let num_in_process = self . processing . get_in_process ( ) ;
217- let total = num_insertions + num_deletions + num_updates + num_no_change;
217+ let num_reprocesses = self . num_reprocesses . get ( ) ;
218+ let total = num_insertions + num_deletions + num_updates + num_no_change + num_reprocesses;
218219
219220 // Progress bar segments
220221 if total > 0 {
@@ -258,7 +259,6 @@ impl std::fmt::Display for UpdateStats {
258259 let bar_width = 40 ;
259260 let mut bar = String :: new ( ) ;
260261
261- let _percentage = ( ( total - num_in_process) as f64 / total as f64 * 100.0 ) as i64 ;
262262 let mut remaining_width = bar_width;
263263
264264 for ( count, segment_type, _) in sorted_segments. iter ( ) {
You can’t perform that action at this time.
0 commit comments