Temporarily disable concurrent protocol collection

This commit is contained in:
JP Simard 2023-01-27 12:24:47 -05:00
parent 0ff0fc9c5c
commit d8096906f4
No known key found for this signature in database
GPG Key ID: 184C3F2916202C58
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ struct ProtocolCollector {
/// ///
/// - returns: The protocol graph. /// - returns: The protocol graph.
func collect() async -> ProtocolGraph { func collect() async -> ProtocolGraph {
await units units
.concurrentCompactMap(collectSingle(unitReader:)) .compactMap(collectSingle(unitReader:))
.reduce(into: ProtocolCollectionResult()) { $0.merge(with: $1) } .reduce(into: ProtocolCollectionResult()) { $0.merge(with: $1) }
.toProtocolGraph() .toProtocolGraph()
} }