We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c54b1 commit 1d583e7Copy full SHA for 1d583e7
crates/cli/src/spinner.rs
@@ -69,7 +69,7 @@ unsafe impl Send for MultiProgressBar {}
69
unsafe impl Sync for MultiProgressBar {}
70
71
fn configure_bar(pb: &ProgressBar) {
72
- pb.set_length(1);
+ pb.set_length(1_000_000); // prevent progress var jump where we start receiving bytes before we know the length
73
pb.set_style(
74
ProgressStyle::with_template(
75
"{elapsed:.dim} ❲{wide_bar:.red}❳ {percent}% {bytes_per_sec:.dim} {bytes:.dim}",
0 commit comments