Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for RejectedExecutionException during delete operations
If the tasks scheduled by ForkJoinPool are all busy and new task is added, the pool would throw RejectedExecutionException if the "saturate" Predicate is not specified. To avoid that, supply Predicate that is always true - with that, no exception will be thrown on busy pool and we would not reject new delete operations. Fixes #1592
- Loading branch information