Commit 404508f
committed
fix: remove duplicate /s suffix from throughput display
Fixed throughput display showing nonsensical "21,970.0125/s/s" by removing
redundant "/s" suffix from progress bar templates.
Root cause: indicatif's {per_sec} placeholder already formats the value
with "/s" suffix, so adding another "/s" in the template creates double
units like "items/s/s".
Fixed 3 progress bar templates:
1. Line 2665: create_simple_progress_bar() - removed "/s" after {per_sec}
2. Line 2686: create_enhanced_progress_bar() - removed "/s" after {per_sec}
3. Line 2712: create_batch_progress_bar() - removed "/s" after {per_sec}
Before: "21,970.0125/s/s"
After: "21,970.01/s"
This provides correct throughput display during indexing phases.1 parent 399e7bf commit 404508f
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2662 | 2662 | | |
2663 | 2663 | | |
2664 | 2664 | | |
2665 | | - | |
| 2665 | + | |
2666 | 2666 | | |
2667 | 2667 | | |
2668 | 2668 | | |
| |||
2683 | 2683 | | |
2684 | 2684 | | |
2685 | 2685 | | |
2686 | | - | |
| 2686 | + | |
2687 | 2687 | | |
2688 | 2688 | | |
2689 | 2689 | | |
| |||
2709 | 2709 | | |
2710 | 2710 | | |
2711 | 2711 | | |
2712 | | - | |
| 2712 | + | |
2713 | 2713 | | |
2714 | 2714 | | |
2715 | 2715 | | |
| |||
0 commit comments