Codebase list golang-github-vbauerster-mpb / 7d930d5
cannot be already aborted inside Abort call Vladimir Bauer 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
270270 func (b *Bar) Abort(drop bool) {
271271 select {
272272 case b.operateState <- func(s *bState) {
273 if s.completed || s.aborted {
273 if s.completed {
274274 return
275275 }
276276 s.aborted = true