Return error when it occurs

This commit is contained in:
Alexander Neumann 2016-08-07 17:18:45 +02:00
parent ef33cf12ca
commit 6b384287f3
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ func ParallelWorkFuncParseID(f ParallelIDWorkFunc) ParallelWorkFunc {
id, err := backend.ParseID(s)
if err != nil {
debug.Log("repository.ParallelWorkFuncParseID", "invalid ID %q: %v", id, err)
return nil
return err
}
return f(id, done)