Temporarily disable concurrent protocol collection
This commit is contained in:
parent
0ff0fc9c5c
commit
d8096906f4
|
@ -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()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue