Skip to content

Commit c15aa1b

Browse files
committed
fix: serial queues
1 parent c8f12b6 commit c15aa1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/UnleashProxyClientSwift/Client/UnleashProxyClientSwift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class UnleashClientBase {
2323
var poller: Poller
2424
var metrics: Metrics
2525
var connectionId: UUID
26-
private let queue = DispatchQueue(label: "com.unleash.clientbase", attributes: .concurrent)
26+
private let queue = DispatchQueue(label: "com.unleash.clientbase")
2727

2828
public init(
2929
unleashUrl: String,

Sources/UnleashProxyClientSwift/Poller/DictionaryStorageProvider.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Foundation
22

33
public class DictionaryStorageProvider: StorageProvider {
44
private var storage: [String: Toggle] = [:]
5-
private let queue = DispatchQueue(label: "com.unleash.storage", attributes: .concurrent)
5+
private let queue = DispatchQueue(label: "com.unleash.storage")
66

77
public init() {}
88

0 commit comments

Comments
 (0)