We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b45a6 commit 65173dfCopy full SHA for 65173df
Packages/ClientRuntime/Sources/Networking/Http/CRT/SDKDefaultIO.swift
@@ -17,6 +17,7 @@ public final class SDKDefaultIO {
17
public let tlsContext: TlsContext
18
19
private init() {
20
+ AwsCommonRuntimeKit.initialize()
21
self.eventLoopGroup = EventLoopGroup(threadCount: 0)
22
self.hostResolver = DefaultHostResolver(eventLoopGroup: eventLoopGroup,
23
maxHosts: 8,
@@ -46,4 +47,8 @@ public final class SDKDefaultIO {
46
47
""")
48
}
49
50
+
51
+ deinit {
52
+ AwsCommonRuntimeKit.cleanUp()
53
+ }
54
0 commit comments