Skip to content

Commit 806919b

Browse files
authored
Merge pull request groue#1235 from groue/dev/raise-default-qos
Raise default Quality of Service to .userInitiated
2 parents c9f3a1e + a289aec commit 806919b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ GRDB adheres to [Semantic Versioning](https://semver.org/), with one exception:
9595

9696
- **New**: [#1226](https://github.com/groue/GRDB.swift/pull/1226) by [@naveensrinivasan](https://github.com/naveensrinivasan): Included githubactions in the dependabot config
9797
- **New**: [#1228](https://github.com/groue/GRDB.swift/pull/1228) by [@naveensrinivasan](https://github.com/naveensrinivasan): Set permissions for GitHub actions
98+
- **New**: [#1235](https://github.com/groue/GRDB.swift/pull/1235) by [@groue](https://github.com/groue): Raise default Quality of Service to `.userInitiated`.
9899
- **Fixed**: [#1233](https://github.com/groue/GRDB.swift/pull/1233) by [@GetToSet](https://github.com/GetToSet): Fix warnings of redundant conformance constraint on Xcode 14.
99100

100101
## 5.24.1

GRDB/Core/Configuration.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ public struct Configuration {
245245
///
246246
/// The quality of service is ignored if you supply a target queue.
247247
///
248-
/// Default: .default
249-
public var qos: DispatchQoS = .default
248+
/// Default: .userInitiated
249+
public var qos: DispatchQoS = .userInitiated
250250

251251
/// The quality of service of read accesses
252252
var readQoS: DispatchQoS {

0 commit comments

Comments
 (0)