You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When set NetServer Option IdleTimeout > 0
In file io.vertx.core.net.impl.NetServerImpl at function initChannel at line 145~147 will add 'idle' handler to pipeline
And in file io.vertx.mqtt.impl.MqttServerImpl on function initChannel at line 141 will add a 'idle' hander too, it will throw the erro exception
I think should change the last 'idle' to 'mqttIdle'
The text was updated successfully, but these errors were encountered:
@Sammers21 in the master it will has the error:
Beause in io.vertx.mqtt.impl.MqttServerImpl on function initChannel at line 141: pipeline.addBefore("handler", "idle", new IdleStateHandler(this.options.timeoutOnConnect(), 0, 0));
the "idle" handle is add in NetServerImpl before when you set NetServerOption.IdleTimeout > 0
When set NetServer Option IdleTimeout > 0
In file io.vertx.core.net.impl.NetServerImpl at function initChannel at line 145~147 will add 'idle' handler to pipeline
And in file io.vertx.mqtt.impl.MqttServerImpl on function initChannel at line 141 will add a 'idle' hander too, it will throw the erro exception
I think should change the last 'idle' to 'mqttIdle'
The text was updated successfully, but these errors were encountered: