diff --git a/ReactiveObjC/RACTargetQueueScheduler.m b/ReactiveObjC/RACTargetQueueScheduler.m index 6e1dcaf7d..e6841465e 100644 --- a/ReactiveObjC/RACTargetQueueScheduler.m +++ b/ReactiveObjC/RACTargetQueueScheduler.m @@ -20,7 +20,7 @@ - (instancetype)initWithName:(NSString *)name targetQueue:(dispatch_queue_t)targ name = [NSString stringWithFormat:@"org.reactivecocoa.ReactiveObjC.RACTargetQueueScheduler(%s)", dispatch_queue_get_label(targetQueue)]; } - dispatch_queue_t queue = dispatch_queue_create(name.UTF8String, DISPATCH_QUEUE_SERIAL); + dispatch_queue_t queue = dispatch_queue_create(name.UTF8String, DISPATCH_QUEUE_CONCURRENT); if (queue == NULL) return nil; dispatch_set_target_queue(queue, targetQueue);