change progress bar display rate to 5s to reduce 'spamminess' (#6640)

#6625
This commit is contained in:
Adrien Delorme 2018-08-30 16:00:30 +02:00 committed by GitHub
parent 7f0c540ef2
commit 9cefd69f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ func GetDefaultProgressBar() ProgressBar {
bar.ShowFinalTime = false
bar.SetUnits(pb.U_BYTES)
bar.Format("[=>-]")
bar.SetRefreshRate(1 * time.Second)
bar.SetRefreshRate(5 * time.Second)
return bar
}