Build Information
Successful build of swift-distributed-actors, reference main (00d9af
), with Swift 6.1 for macOS (SPM) on 1 May 2025 15:09:31 UTC.
Swift 6 data race errors: 154
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
| `- note: add parentheses to silence this warning
374 | }
375 | }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:58:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
56 |
57 | let data: Data = try container.decode(Data.self)
58 | let proto = try ProtobufRepresentation(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
59 |
60 | try self.init(fromProto: proto, context: context)
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:103:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
101 |
102 | let data: Data = try container.decode(Data.self)
103 | let proto = try ProtobufRepresentation(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
104 |
105 | try self.init(fromProto: proto, context: context)
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:127:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
125 | extension _InternalProtobufRepresentable {
126 | init(context: Serialization.Context, from buffer: Serialization.Buffer, using manifest: Serialization.Manifest) throws {
127 | let proto = try ProtobufRepresentation(serializedData: buffer.readData())
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
128 | try self.init(fromProto: proto, context: context)
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:138:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
136 | extension _ProtobufRepresentable {
137 | public init(context: Serialization.Context, from buffer: Serialization.Buffer, using manifest: Serialization.Manifest) throws {
138 | let proto = try ProtobufRepresentation(serializedData: buffer.readData())
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
139 | try self.init(fromProto: proto, context: context)
140 | }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Clocks/Protobuf/VersionVector.pb.swift:233:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
231 | fileprivate class _StorageClass {
232 | var _manifest: _ProtoManifest? = nil
233 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
234 |
235 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Clocks/Protobuf/VersionVector.pb.swift:560:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
558 | var _dot: _ProtoVersionDot? = nil
559 | var _manifest: _ProtoManifest? = nil
560 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
561 |
562 | static let defaultInstance = _StorageClass()
[706/745] Compiling DistributedCluster VersionVector.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorID.swift:462:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
460 | }
461 |
462 | extension Optional: Comparable where Wrapped == Cluster.Node {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
463 | public static func < (lhs: Cluster.Node?, rhs: Cluster.Node?) -> Bool {
464 | switch (lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorLogging.swift:97:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
95 |
96 | // TODO: implement logging infrastructure - pipe as messages to dedicated logging actor
97 | struct ActorOriginLogHandler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
98 | public static func _createFormatter() -> DateFormatter {
99 | let formatter = DateFormatter()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 | /// - function: The function the log line was emitted from.
134 | /// - line: The line the log message was emitted from.
135 | func log(
| `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 | level: Logger.Level,
137 | message: Logger.Message,
:
207 | extension LogHandler {
208 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 | public func log(
| `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 | level: Logger.Level,
211 | message: Logger.Message,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorLogging.swift:373:75: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
366 | _ message: @autoclosure () -> Logger.Message,
367 | metadata: @autoclosure () -> Logger.Metadata? = nil,
368 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
369 | function: String = #function,
370 | line: UInt = #line
371 | ) {
372 | if let level = level {
373 | self.log(level: level, message(), metadata: metadata(), file: file, function: function, line: line)
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
374 | }
375 | }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:58:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
56 |
57 | let data: Data = try container.decode(Data.self)
58 | let proto = try ProtobufRepresentation(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
59 |
60 | try self.init(fromProto: proto, context: context)
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:103:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
101 |
102 | let data: Data = try container.decode(Data.self)
103 | let proto = try ProtobufRepresentation(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
104 |
105 | try self.init(fromProto: proto, context: context)
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:127:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
125 | extension _InternalProtobufRepresentable {
126 | init(context: Serialization.Context, from buffer: Serialization.Buffer, using manifest: Serialization.Manifest) throws {
127 | let proto = try ProtobufRepresentation(serializedData: buffer.readData())
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
128 | try self.init(fromProto: proto, context: context)
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ActorMessage+Protobuf.swift:138:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
136 | extension _ProtobufRepresentable {
137 | public init(context: Serialization.Context, from buffer: Serialization.Buffer, using manifest: Serialization.Manifest) throws {
138 | let proto = try ProtobufRepresentation(serializedData: buffer.readData())
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
139 | try self.init(fromProto: proto, context: context)
140 | }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Clocks/Protobuf/VersionVector.pb.swift:233:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
231 | fileprivate class _StorageClass {
232 | var _manifest: _ProtoManifest? = nil
233 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
234 |
235 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Clocks/Protobuf/VersionVector.pb.swift:560:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
558 | var _dot: _ProtoVersionDot? = nil
559 | var _manifest: _ProtoManifest? = nil
560 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
561 |
562 | static let defaultInstance = _StorageClass()
[707/745] Compiling DistributedCluster WireProtocol+Serialization.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[708/745] Compiling DistributedCluster WireProtocol.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[709/745] Compiling DistributedCluster ActorContext+Receptionist.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[710/745] Compiling DistributedCluster DistributedReception.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[711/745] Compiling DistributedCluster DistributedReceptionist.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[712/745] Compiling DistributedCluster Reception.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[713/745] Compiling DistributedCluster Receptionist+Serialization.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[714/745] Compiling DistributedCluster Receptionist.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[715/745] Compiling DistributedCluster ReceptionistOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[716/745] Compiling DistributedCluster ReceptionistSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[717/745] Compiling DistributedCluster SystemReceptionist.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[718/745] Compiling DistributedCluster Refs+any.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[719/745] Compiling DistributedCluster Refs.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[720/745] Compiling DistributedCluster Scheduler.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[721/745] Compiling DistributedCluster ActorRef+Serialization.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[722/745] Compiling DistributedCluster Serialization.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 | var _recipient: _ProtoActorID? = nil
673 | var _manifest: _ProtoManifest? = nil
674 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:53: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 | var _from: _ProtoClusterNode? = nil
752 | var _manifest: _ProtoManifest? = nil
753 | var _payload: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
37 | /// INTERNAL API
38 | /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
39 | public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
| `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
40 | public let guest: Guest
41 | public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
72 | /// INTERNAL API
73 | /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
74 | public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
| `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
75 | public let key: _Reception.Key<Guest>
76 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
97 | /// INTERNAL API
98 | /// Subscribe to periodic updates of the specified key
99 | public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
| `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 | public let key: _Reception.Key<Guest>
101 | public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
| `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 | var _addressableActorRef: _AddressableActorRef { _undefined() }
372 | var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 | let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 | var _key: AnyReceptionKey {
491 | fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
| `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 | let key: AnyReceptionKey
551 |
[723/745] Compiling DistributedCluster VersionVector.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[724/745] Compiling DistributedCluster Association.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[725/745] Compiling DistributedCluster FaultyNetworkSimulatingHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[726/745] Compiling DistributedCluster Cluster+Event.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[727/745] Compiling DistributedCluster Cluster+Member.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[728/745] Compiling DistributedCluster Cluster+Membership.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[729/745] Compiling DistributedCluster ClusterControl.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[730/745] Compiling DistributedCluster ClusterEventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[731/745] Compiling DistributedCluster ClusterShell+LeaderActions.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[732/745] Compiling DistributedCluster ClusterShell+Logging.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[733/745] Compiling DistributedCluster ClusterShell.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[734/745] Compiling DistributedCluster ClusterShellState.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[735/745] Compiling DistributedCluster DiscoveryShell.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[736/745] Compiling DistributedCluster DistributedNodeDeathWatcher.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[737/745] Compiling DistributedCluster DowningSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[738/745] Compiling DistributedCluster DowningStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[739/745] Compiling DistributedCluster TimeoutBasedDowningStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:49:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
27 | _ type: TraceLogType,
28 | message: Any,
29 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
30 | function: String = #function,
31 | line: UInt = #line
:
47 | level: level,
48 | "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
49 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
50 | function: function,
51 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:88:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
78 | _ type: TraceLogType,
79 | message: Any,
80 | file: String = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
81 | function: String = #function,
82 | line: UInt = #line
:
86 | level: level,
87 | "[tracelog:cluster] \(type.description): \(message)",
88 | file: file,
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
89 | function: function,
90 | line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
| `- note: 'file' declared here
3 |
[740/764] Emitting module it_Clustered_swim_suspension_reachability
[741/764] Compiling it_Clustered_swim_suspension_reachability main.swift
[742/764] Compiling MultiNodeTestKit MultiNodeTestKit+Control.swift
[743/764] Compiling MultiNodeTestKit MultiNodeTestSettings.swift
[743/764] Write Objects.LinkFileList
[745/764] Emitting module MultiNodeTestKit
[746/764] Compiling MultiNodeTestKit MultiNodeTestKit.swift
[747/764] Compiling MultiNodeTestKit MultiNodeTestConductor.swift
[748/768] Emitting module DistributedActorsMultiNodeTests
[749/768] Compiling DistributedActorsMultiNodeTests MultiNode+MultiNodeConductorTests.swift
[750/768] Compiling DistributedActorsMultiNodeTests MultiNode+ReceptionistTests.swift
[751/768] Compiling DistributedActorsMultiNodeTests MultiNode+ClusterSingletonTests.swift
[752/778] Emitting module MultiNodeTestKitRunner
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
19 | import MultiNodeTestKit
20 |
21 | struct PrettyMultiNodeLogHandler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
22 | let nodeName: String
23 | let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 | /// - function: The function the log line was emitted from.
134 | /// - line: The line the log message was emitted from.
135 | func log(
| `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 | level: Logger.Level,
137 | message: Logger.Message,
:
207 | extension LogHandler {
208 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 | public func log(
| `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 | level: Logger.Level,
211 | message: Logger.Message,
[753/779] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Exec.swift
[754/779] Compiling MultiNodeTestKitRunner Time.swift
[755/779] Compiling MultiNodeTestKitRunner Terminal+Rainbow.swift
[756/779] Compiling MultiNodeTestKitRunner Process+Extensions.swift
[757/779] Compiling MultiNodeTestKitRunner NaiveLogger.swift
[758/779] Compiling MultiNodeTestKitRunner OutputGrepper.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:58:25: warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
56 | channel.pipeline.addHandlers(
57 | [
58 | ByteToMessageHandler(NewlineFramer()),
| `- warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
59 | GrepHandler(
60 | nodeName: nodeName,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Codec.swift:507:1: note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
505 |
506 | @available(*, unavailable)
507 | extension ByteToMessageHandler: Sendable {}
| `- note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
508 |
509 | // MARK: ByteToMessageHandler: Test Helpers
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:67:14: warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)'
65 | )
66 | }
67 | .withPipes(
| |- warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)'
| `- note: use 'takingOwnershipOfDescriptors(input:output:)' instead
68 | inputDescriptor: dup(processToChannel.fileHandleForReading.fileDescriptor),
69 | outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:71:33: warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
69 | outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
70 | )
71 | let processOutputPipe = NIOFileHandle(descriptor: dup(processToChannel.fileHandleForWriting.fileDescriptor))
| `- warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
72 | processToChannel.fileHandleForReading.closeFile()
73 | processToChannel.fileHandleForWriting.closeFile()
[759/779] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Test.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/boot+MultiNodeTestKitRunner+Test.swift:120:22: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode; this is an error in the Swift 6 language mode
118 | let elg = MultiThreadedEventLoopGroup(numberOfThreads: 1)
119 | defer {
120 | try! elg.syncShutdownGracefully()
| `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode; this is an error in the Swift 6 language mode
121 | }
122 |
[760/779] Compiling MultiNodeTestKitRunner MultiNode+TestSuites.swift
[761/779] Compiling MultiNodeTestKitRunner MultiNode+LogCapture.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
19 | import MultiNodeTestKit
20 |
21 | struct PrettyMultiNodeLogHandler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
22 | let nodeName: String
23 | let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 | /// - function: The function the log line was emitted from.
134 | /// - line: The line the log message was emitted from.
135 | func log(
| `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 | level: Logger.Level,
137 | message: Logger.Message,
:
207 | extension LogHandler {
208 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 | public func log(
| `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 | level: Logger.Level,
211 | message: Logger.Message,
[762/779] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner.swift
[762/779] Write Objects.LinkFileList
[763/779] Linking it_Clustered_swim_suspension_reachability
[764/779] Applying it_Clustered_swim_suspension_reachability
[765/779] Linking MultiNodeTestKitRunner
[766/779] Applying MultiNodeTestKitRunner
[768/779] Compiling DistributedActorsTestKit Task+Testing.swift
[769/779] Compiling DistributedActorsTestKit TestProbes+Receptionist.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes+Receptionist.swift:37:71: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
28 | within timeout: Duration,
29 | verbose: Bool = false,
30 | file: StaticString = #filePath,
| `- note: did you mean for parameter 'file' to default to '#fileID'?
31 | line: UInt = #line,
32 | column: UInt = #column
:
35 | let listing = try self.fishForMessages(within: timeout, file: file, line: line) {
36 | if verbose {
37 | pinfo("Received listing: \($0.refs.count)", file: file, line: line)
| |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
| `- note: add parentheses to silence this warning
38 | }
39 |
DistributedCluster.pinfo.file:1:1: note: 'file' declared here
1 | file: StaticString
| `- note: 'file' declared here
[770/779] Compiling DistributedActorsTestKit ShouldMatchers.swift
[771/779] Compiling DistributedActorsTestKit SingleClusterSystemXCTestCase.swift
[772/780] Compiling DistributedActorsTestKit TestProbes.swift
[773/780] Compiling DistributedActorsTestKit InspectKit.swift
[774/780] Compiling DistributedActorsTestKit ClusteredActorSystemsXCTestCase.swift
[775/780] Compiling DistributedActorsTestKit DistributedActor+Assertions.swift
[776/780] Compiling DistributedActorsTestKit Data+Testing.swift
[777/780] Compiling DistributedActorsTestKit ActorTestKit.swift
[778/780] Compiling DistributedActorsTestKit ByteBuffer+Testing.swift
[779/780] Compiling DistributedActorsTestKit LogCapture.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:202:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
200 | // MARK: LogCapture LogHandler
201 |
202 | struct LogCaptureLogHandler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
203 | let label: String
204 | let capture: LogCapture
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 | /// - function: The function the log line was emitted from.
134 | /// - line: The line the log message was emitted from.
135 | func log(
| `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 | level: Logger.Level,
137 | message: Logger.Message,
:
207 | extension LogHandler {
208 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 | public func log(
| `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 | level: Logger.Level,
211 | message: Logger.Message,
[780/780] Emitting module DistributedActorsTestKit
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:202:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
200 | // MARK: LogCapture LogHandler
201 |
202 | struct LogCaptureLogHandler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
203 | let label: String
204 | let capture: LogCapture
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 | /// - function: The function the log line was emitted from.
134 | /// - line: The line the log message was emitted from.
135 | func log(
| `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 | level: Logger.Level,
137 | message: Logger.Message,
:
207 | extension LogHandler {
208 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 | public func log(
| `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 | level: Logger.Level,
211 | message: Logger.Message,
Build complete! (22.87s)
Build complete.
{
"cxx_language_standard" : "c++11",
"dependencies" : [
{
"identity" : "swift-atomics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-atomics"
},
{
"identity" : "swift-cluster-membership",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-cluster-membership"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.61.1",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio"
},
{
"identity" : "swift-nio-extras",
"requirement" : {
"range" : [
{
"lower_bound" : "1.20.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio-extras"
},
{
"identity" : "swift-nio-ssl",
"requirement" : {
"range" : [
{
"lower_bound" : "2.25.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio-ssl"
},
{
"identity" : "swift-protobuf",
"requirement" : {
"range" : [
{
"lower_bound" : "1.25.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-protobuf"
},
{
"identity" : "swift-backtrace",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/swift-backtrace"
},
{
"identity" : "swift-async-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0-beta",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-async-algorithms"
},
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.5",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log"
},
{
"identity" : "swift-metrics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-metrics"
},
{
"identity" : "swift-service-discovery",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-service-discovery"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "swift-distributed-actors",
"name" : "swift-distributed-actors",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "14.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "DistributedCluster",
"targets" : [
"DistributedCluster"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "it_Clustered_swim_suspension_reachability",
"targets" : [
"it_Clustered_swim_suspension_reachability"
],
"type" : {
"executable" : null
}
},
{
"name" : "MultiNodeTestKitRunner",
"targets" : [
"MultiNodeTestKitRunner"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "it_Clustered_swim_suspension_reachability",
"module_type" : "SwiftTarget",
"name" : "it_Clustered_swim_suspension_reachability",
"path" : "IntegrationTests/tests_01_cluster/it_Clustered_swim_suspension_reachability",
"product_memberships" : [
"it_Clustered_swim_suspension_reachability"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"DistributedCluster"
],
"type" : "executable"
},
{
"c99name" : "MultiNodeTestPlugin",
"module_type" : "PluginTarget",
"name" : "MultiNodeTestPlugin",
"path" : "Plugins/MultiNodeTestPlugin",
"plugin_capability" : {
"intent" : {
"description" : "Run MultiNodeTestKit based tests across multiple processes or physical compute nodes",
"type" : "custom",
"verb" : "multi-node"
},
"permissions" : [
],
"type" : "command"
},
"sources" : [
"plugin.swift"
],
"type" : "plugin"
},
{
"c99name" : "MultiNodeTestKitRunner",
"module_type" : "SwiftTarget",
"name" : "MultiNodeTestKitRunner",
"path" : "Sources/MultiNodeTestKitRunner",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"MultiNodeTestKitRunner"
],
"sources" : [
"MultiNode+LogCapture.swift",
"MultiNode+TestSuites.swift",
"NaiveLogger.swift",
"OutputGrepper.swift",
"Process+Extensions.swift",
"Terminal+Rainbow.swift",
"Time.swift",
"boot+MultiNodeTestKitRunner+Exec.swift",
"boot+MultiNodeTestKitRunner+Test.swift",
"boot+MultiNodeTestKitRunner.swift"
],
"target_dependencies" : [
"DistributedActorsMultiNodeTests",
"MultiNodeTestKit"
],
"type" : "executable"
},
{
"c99name" : "MultiNodeTestKit",
"module_type" : "SwiftTarget",
"name" : "MultiNodeTestKit",
"path" : "Sources/MultiNodeTestKit",
"product_dependencies" : [
"Backtrace",
"AsyncAlgorithms",
"Atomics",
"OrderedCollections"
],
"product_memberships" : [
"MultiNodeTestKitRunner"
],
"sources" : [
"MultiNodeTestConductor.swift",
"MultiNodeTestKit+Control.swift",
"MultiNodeTestKit.swift",
"MultiNodeTestSettings.swift"
],
"target_dependencies" : [
"DistributedCluster"
],
"type" : "library"
},
{
"c99name" : "DistributedClusterTests",
"module_type" : "SwiftTarget",
"name" : "DistributedClusterTests",
"path" : "Tests/DistributedClusterTests",
"product_dependencies" : [
"Atomics"
],
"sources" : [
"ActorAskTests.swift",
"ActorIDMetadataTests.swift",
"ActorIDTests.swift",
"ActorIsolationFailureHandlingTests.swift",
"ActorLeakingTests.swift",
"ActorLifecycleTests.swift",
"ActorLoggingTests.swift",
"ActorNamingTests.swift",
"ActorPathTests.swift",
"ActorRefAdapterTests.swift",
"ActorSubReceiveTests.swift",
"BackoffStrategyTests.swift",
"BasicClusterSystemLifecycleTests.swift",
"BehaviorCanonicalizeTests.swift",
"BehaviorMatchers.swift",
"BehaviorTests.swift",
"BlockingReceptacleTests.swift",
"Clocks/Protobuf/VersionVector+SerializationTests.swift",
"Clocks/VersionVectorTests.swift",
"Cluster/AggressiveNodeReplacementClusteredTests.swift",
"Cluster/AssociationClusteredTests.swift",
"Cluster/ClusterDiscoveryTests.swift",
"Cluster/ClusterEventStreamTests.swift",
"Cluster/ClusterLeaderActionsClusteredTests.swift",
"Cluster/ClusterLeaderActionsTests.swift",
"Cluster/ClusterMembershipSnapshotTests.swift",
"Cluster/ClusterOnDownActionTests.swift",
"Cluster/DowningStrategy/DowningClusteredTests.swift",
"Cluster/DowningStrategy/TimeoutBasedDowningInstanceTests.swift",
"Cluster/GossipSeenTableTests.swift",
"Cluster/LeadershipTests.swift",
"Cluster/MembershipGossipClusteredTests.swift",
"Cluster/MembershipGossipLogicSimulationTests.swift",
"Cluster/MembershipGossipTests.swift",
"Cluster/Protobuf/ClusterEvents+SerializationTests.swift",
"Cluster/Protobuf/Membership+SerializationTests.swift",
"Cluster/ProtobufRoundTripTests.swift",
"Cluster/Reception/OpLogDistributedReceptionistClusteredTests.swift",
"Cluster/Reception/OpLogStreamTests.swift",
"Cluster/Reception/_OpLogClusterReceptionistClusteredTests.swift",
"Cluster/RemoteActorRefProviderTests.swift",
"Cluster/RemoteMessagingClusteredTests.swift",
"Cluster/RemotingHandshakeStateMachineTests.swift",
"Cluster/RemotingTLSClusteredTests.swift",
"Cluster/SWIM/Protobuf/SWIM+SerializationTests.swift",
"Cluster/SWIM/SWIMActorClusteredTests.swift",
"Cluster/ShootTheOtherNodeClusteredTests.swift",
"Cluster/SystemMessagesRedeliveryTests.swift",
"Cluster/TestExtensions+MembershipDSL.swift",
"Cluster/TestExtensions.swift",
"ClusterSystem+Testing.swift",
"ClusterSystemTests.swift",
"CustomStringInterpolationTests.swift",
"DeadLetterTests.swift",
"DefaultActorSystem.swift",
"DispatcherTests.swift",
"DistributedReceptionistTests.swift",
"EndpointTests.swift",
"FixedThreadPoolTests.swift",
"Gossip/GossiperShellTests.swift",
"HeapTests.swift",
"InterceptorTests.swift",
"LifecycleWatchTests.swift",
"MPSCLinkedQueueTests.swift",
"MailboxTests.swift",
"MembershipTests.swift",
"Metrics/ActorMemoryTests.swift",
"Metrics/ActorMetricsTests.swift",
"Metrics/SWIMActorPeerMetricsTests.swift",
"MetricsTestKit/MetricsTestKit.swift",
"NIOExtensionsTests.swift",
"NodeDeathWatcherTests.swift",
"NoopLogger.swift",
"ParentChildActorTests.swift",
"Pattern/WorkerPoolTests.swift",
"Plugins/ClusterSingleton/ClusterSingletonPluginClusteredTests.swift",
"Plugins/ClusterSingleton/ClusterSingletonPluginTests.swift",
"Plugins/PluginsSettingsTests.swift",
"RemoteCallTests.swift",
"RingBufferTests.swift",
"SerializationPoolTests.swift",
"SerializationTests.swift",
"StashBufferTests.swift",
"StubDistributedActorTests.swift",
"SupervisionTests.swift",
"TimeSpecTests.swift",
"TimersTests.swift",
"TraversalTests.swift",
"XCTest+Async.swift",
"_ActorRefReceptionistTests.swift",
"_DeathWatchTests.swift",
"_TerminationWatchTests.swift"
],
"target_dependencies" : [
"DistributedCluster",
"DistributedActorsTestKit"
],
"type" : "test"
},
{
"c99name" : "DistributedCluster",
"module_type" : "SwiftTarget",
"name" : "DistributedCluster",
"path" : "Sources/DistributedCluster",
"product_dependencies" : [
"OrderedCollections",
"Atomics",
"SWIM",
"NIO",
"NIOPosix",
"NIOFoundationCompat",
"NIOSSL",
"NIOExtras",
"SwiftProtobuf",
"Logging",
"Metrics",
"ServiceDiscovery",
"Backtrace",
"AsyncAlgorithms"
],
"product_memberships" : [
"DistributedCluster",
"it_Clustered_swim_suspension_reachability",
"MultiNodeTestKitRunner"
],
"sources" : [
"ActorContext.swift",
"ActorID.swift",
"ActorIDMetadataSettings.swift",
"ActorLogging.swift",
"ActorMessage+Protobuf.swift",
"ActorMessages.swift",
"ActorMetadata.swift",
"ActorRef+Ask.swift",
"ActorRefFactory.swift",
"ActorRefProvider.swift",
"ActorShell+Children.swift",
"Adapters.swift",
"AsyncResult.swift",
"Backoff.swift",
"Behaviors.swift",
"Clocks/Protobuf/VersionVector+Serialization.swift",
"Clocks/Protobuf/VersionVector.pb.swift",
"Clocks/VersionVector.swift",
"Cluster/Association.swift",
"Cluster/Chaos/FaultyNetworkSimulatingHandler.swift",
"Cluster/Cluster+Event.swift",
"Cluster/Cluster+Member.swift",
"Cluster/Cluster+Membership.swift",
"Cluster/ClusterControl.swift",
"Cluster/ClusterEventStream.swift",
"Cluster/ClusterShell+LeaderActions.swift",
"Cluster/ClusterShell+Logging.swift",
"Cluster/ClusterShell.swift",
"Cluster/ClusterShellState.swift",
"Cluster/DiscoveryShell.swift",
"Cluster/DistributedNodeDeathWatcher.swift",
"Cluster/Downing/DowningSettings.swift",
"Cluster/Downing/DowningStrategy.swift",
"Cluster/Downing/TimeoutBasedDowningStrategy.swift",
"Cluster/HandshakeStateMachine.swift",
"Cluster/Leadership.swift",
"Cluster/MembershipGossip/Cluster+MembershipGossip+Serialization.swift",
"Cluster/MembershipGossip/Cluster+MembershipGossip.swift",
"Cluster/MembershipGossip/Cluster+MembershipGossipLogic.swift",
"Cluster/NodeDeathWatcher.swift",
"Cluster/Protobuf/Cluster+Serialization.swift",
"Cluster/Protobuf/Cluster.pb.swift",
"Cluster/Protobuf/ClusterEvents+Serialization.swift",
"Cluster/Protobuf/ClusterEvents.pb.swift",
"Cluster/Protobuf/Membership+Serialization.swift",
"Cluster/Protobuf/Membership.pb.swift",
"Cluster/Reception/OperationLog.swift",
"Cluster/Reception/OperationLogClusterReceptionist+Codable.swift",
"Cluster/Reception/OperationLogDistributedReceptionist.swift",
"Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift",
"Cluster/SWIM/ClusterMembership+Converters.swift",
"Cluster/SWIM/Protobuf/SWIM+Serialization.swift",
"Cluster/SWIM/Protobuf/SWIM.pb.swift",
"Cluster/SWIM/SWIMActor+NotUsedCalls.swift",
"Cluster/SWIM/SWIMActor.swift",
"Cluster/SystemMessages+Redelivery.swift",
"Cluster/Transport/RemoteClusterActorPersonality.swift",
"Cluster/Transport/TransportPipelines.swift",
"Cluster/Transport/WireMessages.swift",
"ClusterEndpoint.swift",
"ClusterNode.swift",
"ClusterSystem.swift",
"ClusterSystemSettings.swift",
"Collections/Heap.swift",
"Collections/MPSCLinkedQueue.swift",
"Collections/RingBuffer.swift",
"Collections/_LinkedBlockingQueue.swift",
"Concurrency/AffinityThreadPool.swift",
"Concurrency/CountDownLatch.swift",
"Concurrency/_Condition.swift",
"Concurrency/_FixedThreadPool.swift",
"Concurrency/_Thread.swift",
"Concurrency/locks.swift",
"DeadLetters.swift",
"Dispatchers.swift",
"DistributedActor+Extensions.swift",
"DistributedActor+Internal.swift",
"DistributedActor+Messages.swift",
"DistributedActorContext.swift",
"Gossip/Gossip+Serialization.swift",
"Gossip/Gossip+Settings.swift",
"Gossip/GossipLogic.swift",
"Gossip/Gossiper+Shell+Serialization.swift",
"Gossip/Gossiper+Shell.swift",
"Gossip/Gossiper.swift",
"Instrumentation/ActorTransportInstrumentation.swift",
"Instrumentation/ReceptionistInstrumentation.swift",
"Instrumentation/os_signpost/ActorTransportInstrumentation+os_signpost.swift",
"Instrumentation/os_signpost/InstrumentationProvider+os_signpost.swift",
"Instrumentation/os_signpost/ReceptionistInstrumentation+os_signpost.swift",
"InvocationBehavior.swift",
"LifecycleMonitoring/LifecycleWatch.swift",
"LifecycleMonitoring/LifecycleWatchContainer.swift",
"LifecycleMonitoring/_BehaviorDeathWatch.swift",
"Metrics/CoreMetrics+Extensions.swift",
"Metrics/CoreMetrics+MetricsPNCounter.swift",
"Metrics/Metrics+Actor.swift",
"Metrics/Metrics+ClusterSystem.swift",
"Metrics/MetricsSettings.swift",
"NIO+Extensions.swift",
"Pattern/WorkerPool.swift",
"Plugins/ClusterSingleton/ClusterSingleton.swift",
"Plugins/ClusterSingleton/ClusterSingletonAllocationStrategy.swift",
"Plugins/ClusterSingleton/ClusterSingletonBoss.swift",
"Plugins/ClusterSingleton/ClusterSingletonPlugin.swift",
"Plugins/ClusterSingleton/ClusterSingletonSettings.swift",
"Plugins/ClusterSystem+Plugins.swift",
"Plugins/ClusterSystemSettings+Plugins.swift",
"Props+Metrics.swift",
"Props.swift",
"Protobuf/ActorID+Serialization.swift",
"Protobuf/ActorID.pb.swift",
"Protobuf/ProtobufMessage+Extensions.swift",
"Protobuf/SystemMessages+Serialization.swift",
"Protobuf/SystemMessages.pb.swift",
"Protobuf/WireProtocol+Serialization.swift",
"Protobuf/WireProtocol.pb.swift",
"Receptionist/ActorContext+Receptionist.swift",
"Receptionist/DistributedReception.swift",
"Receptionist/DistributedReceptionist.swift",
"Receptionist/Reception.swift",
"Receptionist/Receptionist+Serialization.swift",
"Receptionist/Receptionist.swift",
"Receptionist/ReceptionistOperations.swift",
"Receptionist/ReceptionistSettings.swift",
"Receptionist/SystemReceptionist.swift",
"Refs+any.swift",
"Refs.swift",
"Scheduler.swift",
"Serialization/ActorRef+Serialization.swift",
"Serialization/Protobuf/Serialization.pb.swift",
"Serialization/Serialization+Codable.swift",
"Serialization/Serialization+Context.swift",
"Serialization/Serialization+Invocation.swift",
"Serialization/Serialization+Manifest.swift",
"Serialization/Serialization+PrimitiveSerializers.swift",
"Serialization/Serialization+SerializerID.swift",
"Serialization/Serialization+Serializers+Codable.swift",
"Serialization/Serialization+Serializers+Protobuf.swift",
"Serialization/Serialization+Serializers.swift",
"Serialization/Serialization+Settings.swift",
"Serialization/Serialization.swift",
"Serialization/SerializationPool.swift",
"Serialization/TopLevelBlobCoders.swift",
"Serialization/TopLevelBytesBlobCoders.swift",
"Serialization/TopLevelBytesBlobSerializer.swift",
"Serialization/TopLevelProtobufCoders.swift",
"Serialization/TopLevelProtobufSerializer.swift",
"StashBuffer.swift",
"String+Extensions.swift",
"Supervision.swift",
"SystemMessages.swift",
"Time.swift",
"TimeSpec.swift",
"Version.swift",
"WeakActorDictionary.swift",
"_ActorNaming.swift",
"_ActorShell.swift",
"_BehaviorTimers.swift",
"_Mailbox.swift",
"_OrderedSet+Extensions.swift",
"_Signals.swift",
"utils.swift"
],
"target_dependencies" : [
"DistributedActorsConcurrencyHelpers",
"CDistributedActorsMailbox"
],
"type" : "library"
},
{
"c99name" : "DistributedActorsTestKitTests",
"module_type" : "SwiftTarget",
"name" : "DistributedActorsTestKitTests",
"path" : "Tests/DistributedActorsTestKitTests",
"sources" : [
"ActorTestKitTests.swift",
"ActorTestProbeTests.swift",
"DeadlineTests.swift",
"DurationTests.swift"
],
"target_dependencies" : [
"DistributedCluster",
"DistributedActorsTestKit"
],
"type" : "test"
},
{
"c99name" : "DistributedActorsTestKit",
"module_type" : "SwiftTarget",
"name" : "DistributedActorsTestKit",
"path" : "Sources/DistributedActorsTestKit",
"product_dependencies" : [
"Atomics"
],
"sources" : [
"ActorTestKit.swift",
"ByteBuffer+Testing.swift",
"Cluster/ClusteredActorSystemsXCTestCase.swift",
"Cluster/DistributedActor+Assertions.swift",
"Data+Testing.swift",
"InspectKit.swift",
"LogCapture.swift",
"ShouldMatchers.swift",
"SingleClusterSystemXCTestCase.swift",
"Task+Testing.swift",
"TestProbes+Receptionist.swift",
"TestProbes.swift"
],
"target_dependencies" : [
"DistributedCluster",
"DistributedActorsConcurrencyHelpers"
],
"type" : "library"
},
{
"c99name" : "DistributedActorsMultiNodeTests",
"module_type" : "SwiftTarget",
"name" : "DistributedActorsMultiNodeTests",
"path" : "MultiNodeTests/DistributedActorsMultiNodeTests",
"product_memberships" : [
"MultiNodeTestKitRunner"
],
"sources" : [
"MultiNode+ClusterSingletonTests.swift",
"MultiNode+MultiNodeConductorTests.swift",
"MultiNode+ReceptionistTests.swift"
],
"target_dependencies" : [
"MultiNodeTestKit"
],
"type" : "library"
},
{
"c99name" : "DistributedActorsConcurrencyHelpers",
"module_type" : "SwiftTarget",
"name" : "DistributedActorsConcurrencyHelpers",
"path" : "Sources/DistributedActorsConcurrencyHelpers",
"product_memberships" : [
"DistributedCluster",
"it_Clustered_swim_suspension_reachability",
"MultiNodeTestKitRunner"
],
"sources" : [
"lock.swift"
],
"type" : "library"
},
{
"c99name" : "CDistributedActorsMailbox",
"module_type" : "ClangTarget",
"name" : "CDistributedActorsMailbox",
"path" : "Sources/CDistributedActorsMailbox",
"product_memberships" : [
"DistributedCluster",
"it_Clustered_swim_suspension_reachability",
"MultiNodeTestKitRunner"
],
"sources" : [
"backtrace_support.c",
"c_mpsc_linked_queue.c"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/apple/swift-distributed-actors/main
Repository: apple/swift-distributed-actors
Swift version used: 6.1
Target: DistributedCluster
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch release/6.2 -> FETCH_HEAD
* [new branch] release/6.2 -> origin/release/6.2
HEAD is now at 8799b69 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'DistributedCluster'...
Finished extracting symbol information for 'DistributedCluster'. (2.95s)
Building documentation for 'DistributedCluster'...
warning: Parameter 'path' not found in instance method declaration
--> ../ActorID.swift:622:9-622:80
620 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
621 | ///
622 + /// - Parameter path: The path that is suspected to be the parent of `self`
| ╰─suggestion: Remove 'path' parameter documentation
623 | /// - Returns: `true` if this [ActorPath] is a direct descendant of `maybeParentPath`, `false` otherwise
624 | public func isChildPathOf(_ maybeParentPath: _PathRelationships) -> Bool {
warning: Parameter 'path' not found in instance method declaration
--> ../ActorID.swift:622:9-622:80
620 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
621 | ///
622 + /// - Parameter path: The path that is suspected to be the parent of `self`
| ╰─suggestion: Remove 'path' parameter documentation
623 | /// - Returns: `true` if this [ActorPath] is a direct descendant of `maybeParentPath`, `false` otherwise
624 | public func isChildPathOf(_ maybeParentPath: _PathRelationships) -> Bool {
warning: Parameter 'maybeParentPath' is missing documentation
--> ../ActorID.swift:622:80-622:80
620 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
621 | ///
622 + /// - Parameter path: The path that is suspected to be the parent of `self`
| ╰─suggestion: Document 'maybeParentPath' parameter
623 | /// - Returns: `true` if this [ActorPath] is a direct descendant of `maybeParentPath`, `false` otherwise
624 | public func isChildPathOf(_ maybeParentPath: _PathRelationships) -> Bool {
warning: Parameter 'maybeParentPath' is missing documentation
--> ../ActorID.swift:622:80-622:80
620 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
621 | ///
622 + /// - Parameter path: The path that is suspected to be the parent of `self`
| ╰─suggestion: Document 'maybeParentPath' parameter
623 | /// - Returns: `true` if this [ActorPath] is a direct descendant of `maybeParentPath`, `false` otherwise
624 | public func isChildPathOf(_ maybeParentPath: _PathRelationships) -> Bool {
warning: Parameter 'path' not found in instance method declaration
--> ../ActorID.swift:634:9-634:77
632 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
633 | ///
634 + /// - Parameter path: The path that is suspected to be a child of `self`
| ╰─suggestion: Remove 'path' parameter documentation
635 | /// - Returns: `true` if this [ActorPath] is a direct ancestor of `maybeChildPath`, `false` otherwise
636 | public func isParentOf(_ maybeChildPath: _PathRelationships) -> Bool {
warning: Parameter 'path' not found in instance method declaration
--> ../ActorID.swift:634:9-634:77
632 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
633 | ///
634 + /// - Parameter path: The path that is suspected to be a child of `self`
| ╰─suggestion: Remove 'path' parameter documentation
635 | /// - Returns: `true` if this [ActorPath] is a direct ancestor of `maybeChildPath`, `false` otherwise
636 | public func isParentOf(_ maybeChildPath: _PathRelationships) -> Bool {
warning: Parameter 'maybeChildPath' is missing documentation
--> ../ActorID.swift:634:77-634:77
632 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
633 | ///
634 + /// - Parameter path: The path that is suspected to be a child of `self`
| ╰─suggestion: Document 'maybeChildPath' parameter
635 | /// - Returns: `true` if this [ActorPath] is a direct ancestor of `maybeChildPath`, `false` otherwise
636 | public func isParentOf(_ maybeChildPath: _PathRelationships) -> Bool {
warning: Parameter 'maybeChildPath' is missing documentation
--> ../ActorID.swift:634:77-634:77
632 | /// Such relationships must be confirmed by using the `_ActorContext.children.hasChild(:UniqueActorPath)` method. TODO: this does not exist yet
633 | ///
634 + /// - Parameter path: The path that is suspected to be a child of `self`
| ╰─suggestion: Document 'maybeChildPath' parameter
635 | /// - Returns: `true` if this [ActorPath] is a direct ancestor of `maybeChildPath`, `false` otherwise
636 | public func isParentOf(_ maybeChildPath: _PathRelationships) -> Bool {
Finished building documentation for 'DistributedCluster' (0.81s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-actors/main
Updating https://github.com/apple/swift-cluster-membership
Updated https://github.com/apple/swift-cluster-membership (0.46s)
Updating https://github.com/apple/swift-http-structured-headers.git
Updating https://github.com/apple/swift-nio-ssl
Updating https://github.com/apple/swift-protobuf
Updating https://github.com/apple/swift-log.git
Updating https://github.com/apple/swift-system.git
Updating https://github.com/apple/swift-metrics.git
Updating https://github.com/apple/swift-numerics.git
Updated https://github.com/apple/swift-metrics.git (0.46s)
Updating https://github.com/apple/swift-nio-extras.git
Updated https://github.com/apple/swift-http-structured-headers.git (0.50s)
Updated https://github.com/apple/swift-nio-ssl (0.51s)
Updating https://github.com/apple/swift-algorithms.git
Updating https://github.com/apple/swift-async-algorithms
Updated https://github.com/apple/swift-numerics.git (0.61s)
Updated https://github.com/apple/swift-log.git (0.61s)
Updated https://github.com/apple/swift-system.git (0.61s)
Updated https://github.com/apple/swift-protobuf (0.61s)
Updating https://github.com/apple/swift-argument-parser
Updating https://github.com/apple/swift-atomics
Updating https://github.com/swift-server/swift-backtrace
Updating https://github.com/apple/swift-collections
Updated https://github.com/apple/swift-algorithms.git (0.40s)
Updating https://github.com/apple/swift-nio-http2.git
Updated https://github.com/apple/swift-nio-extras.git (0.49s)
Updating https://github.com/apple/swift-service-discovery
Updated https://github.com/apple/swift-async-algorithms (0.52s)
Updating https://github.com/apple/swift-http-types.git
Updated https://github.com/swift-server/swift-backtrace (0.57s)
Updated https://github.com/apple/swift-atomics (0.57s)
Updated https://github.com/apple/swift-argument-parser (0.57s)
Updated https://github.com/apple/swift-collections (0.57s)
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updating https://github.com/apple/swift-nio.git
Updated https://github.com/apple/swift-service-discovery (0.46s)
Updated https://github.com/apple/swift-nio-http2.git (0.52s)
Updated https://github.com/apple/swift-http-types.git (0.42s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.42s)
Updated https://github.com/apple/swift-nio.git (0.70s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (2.38s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.43s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.26.0 (0.46s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.82.1 (0.60s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.0 (0.44s)
Computing version for https://github.com/apple/swift-service-discovery
Computed https://github.com/apple/swift-service-discovery at 1.4.0 (0.43s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.1.4 (0.61s)
Computing version for https://github.com/swift-server/swift-backtrace
Computed https://github.com/swift-server/swift-backtrace at 1.3.5 (0.53s)
Computing version for https://github.com/apple/swift-protobuf
Computed https://github.com/apple/swift-protobuf at 1.29.0 (0.43s)
Computing version for https://github.com/apple/swift-nio-ssl
Computed https://github.com/apple/swift-nio-ssl at 2.30.0 (0.53s)
Computing version for https://github.com/apple/swift-atomics
Computed https://github.com/apple/swift-atomics at 1.2.0 (0.44s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.51s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.2.2 (0.43s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.43s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (0.43s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.2 (0.42s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.53s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.54s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.76s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.35s)
Computing version for https://github.com/apple/swift-async-algorithms
Computed https://github.com/apple/swift-async-algorithms at 1.0.4 (0.48s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/7] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit Mixin+Equals.swift
[11/57] Compiling SymbolKit Mixin+Hash.swift
[12/57] Compiling SymbolKit Mixin.swift
[13/57] Compiling SymbolKit LineList.swift
[14/57] Compiling SymbolKit Position.swift
[15/57] Emitting module SymbolKit
[16/57] Compiling SymbolKit SemanticVersion.swift
[17/57] Compiling SymbolKit AccessControl.swift
[18/57] Compiling SymbolKit Availability.swift
[19/57] Compiling SymbolKit AvailabilityItem.swift
[20/57] Compiling SymbolKit Domain.swift
[21/57] Compiling SymbolKit Names.swift
[22/57] Compiling SymbolKit SPI.swift
[23/57] Compiling SymbolKit Snippet.swift
[24/57] Compiling SymbolKit Extension.swift
[25/57] Compiling SymbolKit Relationship.swift
[26/57] Compiling SymbolKit RelationshipKind.swift
[27/57] Compiling SymbolKit SourceOrigin.swift
[28/57] Compiling SymbolKit GenericConstraints.swift
[29/57] Compiling SymbolKit Swift.swift
[30/57] Compiling SymbolKit SourceRange.swift
[31/57] Compiling SymbolKit Metadata.swift
[32/57] Compiling SymbolKit Module.swift
[33/57] Compiling SymbolKit OperatingSystem.swift
[34/57] Compiling SymbolKit Platform.swift
[35/57] Compiling SymbolKit DeclarationFragments.swift
[36/57] Compiling SymbolKit Fragment.swift
[37/57] Compiling SymbolKit FragmentKind.swift
[38/57] Compiling SymbolKit FunctionParameter.swift
[39/57] Compiling SymbolKit FunctionSignature.swift
[40/57] Compiling SymbolKit Identifier.swift
[41/57] Compiling SymbolKit KindIdentifier.swift
[42/57] Compiling SymbolKit Location.swift
[43/57] Compiling SymbolKit Mutability.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.00s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
Build of target: 'DistributedCluster' complete! (2.44s)
2916
19 /Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-actors/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/apple/swift-distributed-actors/main
File count: 2916
Doc size: 19.0MB
Preparing doc bundle ...
Uploading prod-apple-swift-distributed-actors-main-bec9677c.zip to s3://spi-docs-inbox/prod-apple-swift-distributed-actors-main-bec9677c.zip
Copying... [11%]
Copying... [21%]
Copying... [30%]
Copying... [41%]
Copying... [51%]
Copying... [60%]
Copying... [71%]
Copying... [80%]
Copying... [91%]
Copying... [100%]
Done.