Hi,

I was unable to configure maximumPoolSize using below code:

            restConfiguration()
                .component("netty-http")
                .componentProperty("maximumPoolSize ", "200");

Using this code did the trick

            NettyHttpComponent o =
getContext().getComponent("netty-http", NettyHttpComponent.class);
            o.setMaximumPoolSize(200);

Is this intentional?

Best regards,
Arian

Reply via email to