File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
rxjava-core/src/main/java/rx Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -5296,7 +5296,9 @@ public final Observable<T> onExceptionResumeNext(final Observable<? extends T> r
5296
5296
* @see <a href="https://github.com/Netflix/RxJava/wiki/Observable-Utility-Operators#wiki-parallel">RxJava Wiki: parallel()</a>
5297
5297
*/
5298
5298
public final <R > Observable <R > parallel (Func1 <Observable <T >, Observable <R >> f ) {
5299
- return lift (new OperatorParallel <T , R >(f , Schedulers .computation ()));
5299
+ // TODO move this back to Schedulers.computation() again once that is properly using eventloops
5300
+ // see https://github.com/Netflix/RxJava/issues/713 for why this was changed
5301
+ return lift (new OperatorParallel <T , R >(f , Schedulers .newThread ()));
5300
5302
}
5301
5303
5302
5304
/**
You can’t perform that action at this time.
0 commit comments