mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
Fix double close of abort channel - fixes #592
This commit is contained in:
parent
b4f2ada820
commit
b5faaf7116
@ -183,7 +183,9 @@ func (s *syncCopyMove) processError(err error) {
|
||||
defer s.errorMu.Unlock()
|
||||
switch {
|
||||
case IsFatalError(err):
|
||||
if !s.aborting() {
|
||||
close(s.abort)
|
||||
}
|
||||
s.fatalErr = err
|
||||
case IsNoRetryError(err):
|
||||
s.noRetryErr = err
|
||||
|
Loading…
Reference in New Issue
Block a user