Skip to content

Commit

Permalink
Merge pull request #24899 from JuliaLang/teh/remove_the_training_wheels
Browse files Browse the repository at this point in the history
Remove the "experimental" status from non-1 indexing
  • Loading branch information
timholy authored Jul 11, 2018
2 parents c055692 + 2017e19 commit 8417fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pmap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function wrap_batch(f, p, handle_errors)
remotecall_fetch(f, p, batch)
catch e
if handle_errors
return Any[BatchProcessingError(batch[i], e) for i in 1:length(batch)]
return Any[BatchProcessingError(b, e) for b in batch]
else
rethrow(e)
end
Expand Down

0 comments on commit 8417fb1

Please sign in to comment.