Add missed initialization of the configurator to StateManagedListenerChannel
This commit is contained in:
parent
d1825d918b
commit
a5f1273fea
|
|
@ -146,10 +146,12 @@ internal class StateManagedListenerChannel<ChildChannel: StateManagedChannel>: S
|
||||||
self.connectionQueue = eventLoop.channelQueue(label: "nio.transportservices.listenerchannel", qos: qos)
|
self.connectionQueue = eventLoop.channelQueue(label: "nio.transportservices.listenerchannel", qos: qos)
|
||||||
self.protocolOptions = protocolOptions
|
self.protocolOptions = protocolOptions
|
||||||
self.tlsOptions = tlsOptions
|
self.tlsOptions = tlsOptions
|
||||||
|
self.nwParametersConfigurator = nwParametersConfigurator
|
||||||
self.childLoopGroup = childLoopGroup
|
self.childLoopGroup = childLoopGroup
|
||||||
self.childChannelQoS = childChannelQoS
|
self.childChannelQoS = childChannelQoS
|
||||||
self.childProtocolOptions = childProtocolOptions
|
self.childProtocolOptions = childProtocolOptions
|
||||||
self.childTLSOptions = childTLSOptions
|
self.childTLSOptions = childTLSOptions
|
||||||
|
self.childNWParametersConfigurator = childNWParametersConfigurator
|
||||||
|
|
||||||
// Must come last, as it requires self to be completely initialized.
|
// Must come last, as it requires self to be completely initialized.
|
||||||
self._pipeline = ChannelPipeline(channel: self)
|
self._pipeline = ChannelPipeline(channel: self)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue