Skip to content

Commit 947429b

Browse files
authored
Address warning reported by thread safety analyzer (#319)
Motivation: Thread safety analyzer reports warning about observable state leaving lock guarded code blocks. This PR address some of the warnings. Analysis of the warning does not prove that we have a real bug and all the warnings are considered as potential bugs. Analyzer used is: `docker run --rm -v $(pwd):/src -w /src swift:5.3.1 swift test -c release --sanitize=thread --enable-test-discovery` Modifications: * accessor to count of connections in connection pool is guarded by lock Result: Most of thread safety warnings are addressed without modification of observable code behaviour.
1 parent 0a8dddb commit 947429b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/AsyncHTTPClient/ConnectionPool.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ final class ConnectionPool {
110110
}
111111

112112
var count: Int {
113-
return self.providers.count
113+
return self.lock.withLock {
114+
return self.providers.count
115+
}
114116
}
115117

116118
/// Used by the `ConnectionPool` to index its `HTTP1ConnectionProvider`s

0 commit comments

Comments
 (0)