Skip to content

Commit 6878f3f

Browse files
committed
Updated polling interval + version updates
1 parent c81e813 commit 6878f3f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# TransloaditKit Changelog
22

3+
## 3.3.4
4+
5+
* Changed polling interval to 0.75s for checking assembly status
6+
37
## 3.3.3
48

59
* Added data race protections, allowing for concurrent starting of assemblies

Sources/TransloaditKit/TransloaditPoller.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public final class TransloaditPoller {
103103
self.didFinish()
104104
} else {
105105
// Call succeeded, but not the finished status
106-
DispatchQueue.main.asyncAfter(deadline: .now() + 3) {
106+
DispatchQueue.main.asyncAfter(deadline: .now() + 0.75) {
107107
self.pollStatus(assemblyURL: assemblyURL, completion: completion)
108108
}
109109
}

Transloadit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'Transloadit'
11-
s.version = '3.3.3'
11+
s.version = '3.3.4'
1212
s.summary = 'Transloadit client in Swift'
1313
s.swift_version = '5.0'
1414

0 commit comments

Comments
 (0)