Skip to content

Commit 83307f6

Browse files
committed
use a concurrent queue
1 parent 3d13a66 commit 83307f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PBGitRepository.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dispatch_queue_t PBGetWorkQueue() {
3535
static dispatch_queue_t work_queue;
3636
static dispatch_once_t onceToken;
3737
dispatch_once(&onceToken, ^{
38-
work_queue = dispatch_queue_create("PBWorkQueue", 0);
38+
work_queue = dispatch_queue_create("PBWorkQueue", DISPATCH_QUEUE_CONCURRENT);
3939
});
4040
return work_queue;
4141
#else

0 commit comments

Comments
 (0)