Add missed initialization of the configurator to StateManagedListenerChannel

This commit is contained in:
Gus Cairo 2025-04-09 14:42:44 +01:00
parent d1825d918b
commit a5f1273fea
1 changed files with 2 additions and 0 deletions

View File

@ -146,10 +146,12 @@ internal class StateManagedListenerChannel<ChildChannel: StateManagedChannel>: S
self.connectionQueue = eventLoop.channelQueue(label: "nio.transportservices.listenerchannel", qos: qos)
self.protocolOptions = protocolOptions
self.tlsOptions = tlsOptions
self.nwParametersConfigurator = nwParametersConfigurator
self.childLoopGroup = childLoopGroup
self.childChannelQoS = childChannelQoS
self.childProtocolOptions = childProtocolOptions
self.childTLSOptions = childTLSOptions
self.childNWParametersConfigurator = childNWParametersConfigurator
// Must come last, as it requires self to be completely initialized.
self._pipeline = ChannelPipeline(channel: self)