apple / swift-nio-transport-services

Extensions for SwiftNIO to support Apple platforms as first-class citizens.
https://swiftpackageindex.com/apple/swift-nio-transport-services/main/documentation/niotransportservices
Apache License 2.0
282 stars 71 forks source link

Avoid race in datagram tests #185

Closed glbrntt closed 1 year ago

glbrntt commented 1 year ago

Motivation:

The datagram tests use a handler which sets its event loop in channelRegistered. A function on the handler is called which relies on the EL being set. However, this can race: the function can be called before channelRegistered is called.

Modifications:

Result:

Fewer crashes