This stops the background rename collection
()
| 579 | |
| 580 | // This stops the background rename collection |
| 581 | func (s *syncCopyMove) stopTrackRenames() { |
| 582 | if !s.trackRenames { |
| 583 | return |
| 584 | } |
| 585 | close(s.trackRenamesCh) |
| 586 | s.trackRenamesWg.Wait() |
| 587 | } |
| 588 | |
| 589 | // This starts the background deletion of files for --delete-during |
| 590 | func (s *syncCopyMove) startDeleters() { |