Dont cancel iterator when recieving an Ignore error

This commit is contained in:
Tobie Morgan Hitchcock 2022-02-09 08:53:47 +00:00
parent a9978fdcda
commit 9d957849b0

View file

@ -194,7 +194,6 @@ impl<'a> Iterator<'a> {
// Process the result // Process the result
match res { match res {
Err(Error::IgnoreError) => { Err(Error::IgnoreError) => {
self.run.cancel();
return; return;
} }
Err(e) => { Err(e) => {