2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

Progress: Don't panic for not running progress

This commit is contained in:
Alexander Neumann 2015-03-22 14:12:51 +01:00
parent 2506fa9bef
commit f2df072f48

View File

@ -42,14 +42,10 @@ func NewProgress(d time.Duration) *Progress {
// Start runs resets and runs the progress reporter.
func (p *Progress) Start() {
if p == nil {
if p == nil || p.running {
return
}
if p.running {
panic("truing to reset a running Progress")
}
p.o = sync.Once{}
p.cancel = make(chan struct{})
p.running = true
@ -135,14 +131,10 @@ func (p *Progress) Reset() {
// Done closes the progress report.
func (p *Progress) Done() {
if p == nil {
if p == nil || !p.running {
return
}
if !p.running {
panic("Done() called on non-running Progress")
}
if p.running {
p.running = false
p.o.Do(func() {