[ https://issues.apache.org/jira/browse/KNOX-3021?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Sandor Molnar updated KNOX-3021: -------------------------------- Status: Patch Available (was: In Progress) > Http connection properties are not applied when SSL is disabled > --------------------------------------------------------------- > > Key: KNOX-3021 > URL: https://issues.apache.org/jira/browse/KNOX-3021 > Project: Apache Knox > Issue Type: Bug > Components: Server > Affects Versions: 1.6.0, 2.0.0 > Reporter: Sandor Molnar > Assignee: Sandor Molnar > Priority: Critical > Fix For: 2.1.0 > > Time Spent: 10m > Remaining Estimate: 0h > > This is what we have now: > {noformat} > HttpConfiguration httpConfig = new HttpConfiguration(); > httpConfig.setRequestHeaderSize( > config.getHttpServerRequestHeaderBuffer() ); > httpConfig.setResponseHeaderSize( > config.getHttpServerResponseHeaderBuffer() ); > httpConfig.setOutputBufferSize( config.getHttpServerResponseBuffer() ); > if (config.isSSLEnabled()) { > HttpConfiguration httpsConfig = new HttpConfiguration( httpConfig ); > ... > connector = new ServerConnector( server, sslContextFactory, new > HttpConnectionFactory( httpsConfig ) ); > } else { > connector = new ServerConnector( server ); > } {noformat} > When SSL is not enabled, the previously created {{httpConfig}} is not set in > the created {{ServerConnector}} instance. Therefore, those properties do not > take effect in those clusters. -- This message was sent by Atlassian Jira (v8.20.10#820010)