Skip to content

Commit

Permalink
fix: make MiniSim dispatch queue concurrent (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski authored Nov 20, 2023
1 parent 9d52f09 commit 2a991ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion MiniSim/Service/DeviceService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ protocol DeviceServiceProtocol {
}

class DeviceService: DeviceServiceProtocol {
private static let queue = DispatchQueue(label: "com.MiniSim.DeviceService", qos: .userInteractive)
private static let queue = DispatchQueue(
label: "com.MiniSim.DeviceService",
qos: .userInteractive,
attributes: .concurrent
)
private static let deviceBootedError = "Unable to boot device in current state: Booted"

private static let derivedDataLocation = "~/Library/Developer/Xcode/DerivedData"
Expand Down

0 comments on commit 2a991ce

Please sign in to comment.