From 9fa136cbe551d99991e7facf043b82d2f808a319 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Tue, 5 Dec 2023 17:08:21 +0100 Subject: [PATCH] feat: added 60 seconds to the update interval for readers --- Kit/types.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kit/types.swift b/Kit/types.swift index 69bb4df2..4d5399d7 100644 --- a/Kit/types.swift +++ b/Kit/types.swift @@ -128,7 +128,7 @@ public let ShortLong: [KeyValue_t] = [ KeyValue_t(key: "long", value: "Long") ] -public let ReaderUpdateIntervals: [Int] = [1, 2, 3, 5, 10, 15, 30] +public let ReaderUpdateIntervals: [Int] = [1, 2, 3, 5, 10, 15, 30, 60] public let NumbersOfProcesses: [Int] = [0, 3, 5, 8, 10, 15] public typealias Bandwidth = (upload: Int64, download: Int64)