[ https://issues.apache.org/jira/browse/KNOX-3021?focusedWorklogId=924615&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-924615 ]
ASF GitHub Bot logged work on KNOX-3021: ---------------------------------------- Author: ASF GitHub Bot Created on: 05/Jul/24 09:21 Start Date: 05/Jul/24 09:21 Worklog Time Spent: 10m Work Description: smolnar82 merged PR #882: URL: https://github.com/apache/knox/pull/882 Issue Time Tracking ------------------- Worklog Id: (was: 924615) Time Spent: 20m (was: 10m) > 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: 2.0.0, 1.6.0 > Reporter: Sandor Molnar > Assignee: Sandor Molnar > Priority: Critical > Fix For: 2.1.0 > > Time Spent: 20m > 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)