Reduce block size to reduce the number of times CloudKit has to tell us to split our number of records

This commit is contained in:
Maurice Parker 2021-03-11 19:24:06 -06:00
parent 34f00b7780
commit 7297fddec9
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ import SyncDatabase
class CloudKitSendStatusOperation: MainThreadOperation {
private var log = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: "CloudKit")
private let blockSize = 300
private let blockSize = 150
// MainThreadOperation
public var isCanceled = false